From 3e952b34727a873170e99013a4eca5cd6ffa4321 Mon Sep 17 00:00:00 2001 From: naskya <m@naskya.net> Date: Sat, 29 Apr 2023 14:08:11 +0900 Subject: [PATCH] chore: update icons on post form --- packages/client/src/components/MkPostForm.vue | 2 +- packages/client/src/components/MkPostFormAttaches.vue | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/client/src/components/MkPostForm.vue b/packages/client/src/components/MkPostForm.vue index ff63b77d8..f16d1775a 100644 --- a/packages/client/src/components/MkPostForm.vue +++ b/packages/client/src/components/MkPostForm.vue @@ -55,7 +55,7 @@ :class="{ active: showPreview }" @click="showPreview = !showPreview" > - <i class="ph-file-code ph-bold ph-lg"></i> + <i class="ph-binoculars ph-bold ph-lg"></i> </button> <button class="submit _buttonGradate" diff --git a/packages/client/src/components/MkPostFormAttaches.vue b/packages/client/src/components/MkPostFormAttaches.vue index ad2155155..7c7f240e8 100644 --- a/packages/client/src/components/MkPostFormAttaches.vue +++ b/packages/client/src/components/MkPostFormAttaches.vue @@ -154,22 +154,22 @@ export default defineComponent({ ? i18n.ts.unmarkAsSensitive : i18n.ts.markAsSensitive, icon: file.isSensitive - ? "ph-eye-slash ph-bold ph-lg" - : "ph-eye ph-bold ph-lg", + ? "ph-eye ph-bold ph-lg" + : "ph-eye-slash ph-bold ph-lg", action: () => { this.toggleSensitive(file); }, }, { text: i18n.ts.describeFile, - icon: "ph-cursor-text ph-bold ph-lg", + icon: "ph-subtitles ph-bold ph-lg", action: () => { this.describe(file); }, }, { text: i18n.ts.attachCancel, - icon: "ph-circle-wavy-warning ph-bold ph-lg", + icon: "ph-x ph-bold ph-lg", action: () => { this.detachMedia(file.id); },