게시물 Import 호환성 보강 v1.5.28

This commit is contained in:
2026-06-02 10:30:11 +09:00
parent ef1a9d9032
commit 9d91355c81
11 changed files with 117 additions and 19 deletions

View File

@@ -2326,6 +2326,22 @@ onBeforeUnmount(() => {
>
게시물 {{ postImportResult.importedCount }}, 자산 {{ postImportResult.assetCount }}개를 가져왔습니다.
</div>
<div
v-if="postImportResult?.warningCount"
class="rounded-md bg-[#fff8e8] px-3 py-2 text-sm text-[#8a5a00] ring-1 ring-inset ring-[#f0d28a]"
>
<p class="font-semibold">
경고 {{ postImportResult.warningCount }}개가 있습니다.
</p>
<ul class="mt-2 grid gap-1 text-xs leading-relaxed">
<li
v-for="warning in postImportResult.warnings"
:key="warning"
>
{{ warning }}
</li>
</ul>
</div>
</div>
</div>