fix: [design-insight] 인기 UI 패턴 20종 → 50종 문구 수정
This commit is contained in:
@@ -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종이 추가되었습니다');
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user