summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkPostFormAttaches.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-05-30 14:34:55 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-05-30 14:34:55 +0900
commita3a47b8d35d1f563cfadf87ce077a24cf3bf7cb1 (patch)
tree253dd0c6ca2c73601b2a00d97c0b8cf9288240b0 /packages/frontend/src/components/MkPostFormAttaches.vue
parentrefactor (diff)
downloadmisskey-a3a47b8d35d1f563cfadf87ce077a24cf3bf7cb1.tar.gz
misskey-a3a47b8d35d1f563cfadf87ce077a24cf3bf7cb1.tar.bz2
misskey-a3a47b8d35d1f563cfadf87ce077a24cf3bf7cb1.zip
:art:
Diffstat (limited to 'packages/frontend/src/components/MkPostFormAttaches.vue')
-rw-r--r--packages/frontend/src/components/MkPostFormAttaches.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkPostFormAttaches.vue b/packages/frontend/src/components/MkPostFormAttaches.vue
index ee4d439cc3..18fa142ebc 100644
--- a/packages/frontend/src/components/MkPostFormAttaches.vue
+++ b/packages/frontend/src/components/MkPostFormAttaches.vue
@@ -93,7 +93,7 @@ function showFileMenu(file, ev: MouseEvent) {
action: () => { rename(file); },
}, {
text: file.isSensitive ? i18n.ts.unmarkAsSensitive : i18n.ts.markAsSensitive,
- icon: file.isSensitive ? 'ti ti-eye-off' : 'ti ti-eye',
+ icon: file.isSensitive ? 'ti ti-eye-exclamation' : 'ti ti-eye',
action: () => { toggleSensitive(file); },
}, {
text: i18n.ts.describeFile,