fix: [design-insight] 인기 UI 패턴 20종 → 50종 문구 수정

This commit is contained in:
김보곤
2026-03-08 10:47:29 +09:00
parent 57f53ac01e
commit 4c06c81e4a

View File

@@ -834,7 +834,7 @@
</button>
<div style="border-top: 1px solid var(--di-border); margin: 4px 0;"></div>
<button class="di-btn ghost sm" style="width: 100%; justify-content: flex-start;" @click="loadPresetTemplates(); showExportMenu=false">
<i class="ri-magic-line"></i> 인기 UI 패턴 20
<i class="ri-magic-line"></i> 인기 UI 패턴 50
</button>
</div>
</template>
@@ -941,7 +941,7 @@
<i class="ri-add-line"></i> 번째 카드 추가
</button>
<button class="di-btn" @click="loadPresetTemplates()" style="border-color: var(--di-indigo); color: var(--di-indigo);">
<i class="ri-magic-line"></i> 인기 UI 패턴 20 불러오기
<i class="ri-magic-line"></i> 인기 UI 패턴 50 불러오기
</button>
</div>
</div>
@@ -3764,7 +3764,7 @@ function designInsight() {
// ===== Preset Templates =====
loadPresetTemplates() {
const existing = (this.currentProject.cards || []).length;
if (existing > 0 && !confirm('현재 프로젝트에 인기 UI 패턴 20종을 추가합니다. 계속하시겠습니까?')) return;
if (existing > 0 && !confirm('현재 프로젝트에 인기 UI 패턴 50종을 추가합니다. 계속하시겠습니까?')) return;
const now = new Date().toISOString();
const mkId = () => 'di_' + Date.now() + '_' + Math.random().toString(36).substr(2, 6);
@@ -4553,7 +4553,7 @@ function designInsight() {
this.currentProject.cards = [...cards, ...this.currentProject.cards];
this.saveProject();
this.categoryFilter = 'pattern';
this.toast('인기 UI 패턴 20종이 추가되었습니다');
this.toast('인기 UI 패턴 50종이 추가되었습니다');
},
};
}