diff --git a/src/components/PresetDropdown.vue b/src/components/PresetDropdown.vue index 107c709..e100e1c 100644 --- a/src/components/PresetDropdown.vue +++ b/src/components/PresetDropdown.vue @@ -327,15 +327,15 @@ function importPreset(event: Event) { function getTypeIcon(type: string) { const icons: Record = { - positive: '๐Ÿ‘', - negative: '๐Ÿ‘Ž', + positive: '๐Ÿช„', + negative: 'โ›”', setting: 'โš™๏ธ', - style: '๐ŸŽจ', - character: '๐Ÿ‘ค', - scene: '๐ŸŒ', - custom: '๐Ÿ“' + style: '๐Ÿ–Œ๏ธ', + character: '๐Ÿง™', + scene: '๐Ÿž๏ธ', + custom: '๐Ÿงฉ' }; - return icons[type] || '๐Ÿ“'; + return icons[type] || '๐Ÿงฉ'; } function getTypeLabel(type: string) { diff --git a/src/components/PresetManager.vue b/src/components/PresetManager.vue index 5824df6..2f02614 100644 --- a/src/components/PresetManager.vue +++ b/src/components/PresetManager.vue @@ -54,13 +54,13 @@ function showNotification(message: string, type: 'success' | 'error' | 'info' = // Preset Types const presetTypes: { value: PresetType; label: string; icon: string }[] = [ - { value: 'positive', label: 'ๆญฃ้ขๆ็คบ่ฏ', icon: '๐Ÿ‘' }, - { value: 'negative', label: '่ดŸ้ขๆ็คบ่ฏ', icon: '๐Ÿ‘Ž' }, + { value: 'positive', label: 'ๆญฃ้ขๆ็คบ่ฏ', icon: '๐Ÿช„' }, + { value: 'negative', label: '่ดŸ้ขๆ็คบ่ฏ', icon: 'โ›”' }, { value: 'setting', label: '่ฎพๅฎšๆ ‡็ญพ', icon: 'โš™๏ธ' }, - { value: 'style', label: '้ฃŽๆ ผๆ ทๅผ', icon: '๐ŸŽจ' }, - { value: 'character', label: '่ง’่‰ฒไบบ็‰ฉ', icon: '๐Ÿ‘ค' }, - { value: 'scene', label: 'ๅœบๆ™ฏ็Žฏๅขƒ', icon: '๐ŸŒ' }, - { value: 'custom', label: '่‡ชๅฎšไน‰', icon: '๐Ÿ“' } + { value: 'style', label: '้ฃŽๆ ผๆ ทๅผ', icon: '๐Ÿ–Œ๏ธ' }, + { value: 'character', label: '่ง’่‰ฒไบบ็‰ฉ', icon: '๐Ÿง™' }, + { value: 'scene', label: 'ๅœบๆ™ฏ็Žฏๅขƒ', icon: '๐Ÿž๏ธ' }, + { value: 'custom', label: '่‡ชๅฎšไน‰', icon: '๐Ÿงฉ' } ]; // Computed diff --git a/src/components/preset/PresetList.vue b/src/components/preset/PresetList.vue index aba25d7..6dfb436 100644 --- a/src/components/preset/PresetList.vue +++ b/src/components/preset/PresetList.vue @@ -16,15 +16,15 @@ const emit = defineEmits<{ function getTypeIcon(type: PresetType) { const icons: Record = { - positive: '๐Ÿ‘', - negative: '๐Ÿ‘Ž', + positive: '๐Ÿช„', + negative: 'โ›”', setting: 'โš™๏ธ', - style: '๐ŸŽจ', - character: '๐Ÿ‘ค', - scene: '๐ŸŒ', - custom: '๐Ÿ“' + style: '๐Ÿ–Œ๏ธ', + character: '๐Ÿง™', + scene: '๐Ÿž๏ธ', + custom: '๐Ÿงฉ' }; - return icons[type] || '๐Ÿ“'; + return icons[type] || '๐Ÿงฉ'; } function getTypeLabel(type: PresetType) {