summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/settings/theme.manage.vue
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-03-16 15:04:38 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-03-16 15:04:38 +0900
commit81a0cbd294bd6485fc47200b1bf63dbf2cbc8507 (patch)
tree305e1c3c8f884e8a6383e2a9020d5df3bcc7b0a9 /packages/frontend/src/pages/settings/theme.manage.vue
parent🎨 (diff)
downloadmisskey-81a0cbd294bd6485fc47200b1bf63dbf2cbc8507.tar.gz
misskey-81a0cbd294bd6485fc47200b1bf63dbf2cbc8507.tar.bz2
misskey-81a0cbd294bd6485fc47200b1bf63dbf2cbc8507.zip
chore(frontend): use toast to show message when call copyToClipboard
Diffstat (limited to 'packages/frontend/src/pages/settings/theme.manage.vue')
-rw-r--r--packages/frontend/src/pages/settings/theme.manage.vue3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/settings/theme.manage.vue b/packages/frontend/src/pages/settings/theme.manage.vue
index e2b48ea232..c68c04bb44 100644
--- a/packages/frontend/src/pages/settings/theme.manage.vue
+++ b/packages/frontend/src/pages/settings/theme.manage.vue
@@ -33,12 +33,12 @@ SPDX-License-Identifier: AGPL-3.0-only
<script lang="ts" setup>
import { computed, ref } from 'vue';
import JSON5 from 'json5';
+import type { Theme } from '@/theme.js';
import MkTextarea from '@/components/MkTextarea.vue';
import MkSelect from '@/components/MkSelect.vue';
import MkInput from '@/components/MkInput.vue';
import MkButton from '@/components/MkButton.vue';
import { getBuiltinThemesRef } from '@/theme.js';
-import type { Theme } from '@/theme.js';
import { copyToClipboard } from '@/utility/copy-to-clipboard.js';
import * as os from '@/os.js';
import { getThemes, removeTheme } from '@/theme-store.js';
@@ -63,7 +63,6 @@ const selectedThemeCode = computed(() => {
function copyThemeCode() {
copyToClipboard(selectedThemeCode.value);
- os.success();
}
function uninstall() {