fix: icons

This commit is contained in:
Shivam Mishra
2026-02-04 14:32:14 +05:30
parent 28cc377a8d
commit 4a2b64cc7c
3 changed files with 85 additions and 18 deletions
+4 -8
View File
@@ -6,7 +6,7 @@ import keyboardEventListenerMixins from 'shared/mixins/keyboardEventListenerMixi
import ReplyBottomPanel from 'dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue';
import AttachmentPreview from 'dashboard/components/widgets/AttachmentsPreview.vue';
import ReplyTopPanel from 'dashboard/components/widgets/WootWriter/ReplyTopPanel.vue';
import LiteReplyTopPanel from './LiteReplyTopPanel.vue';
import { REPLY_EDITOR_MODES } from 'dashboard/components/widgets/WootWriter/constants';
import WootMessageEditor from 'dashboard/components/widgets/WootWriter/Editor.vue';
@@ -18,7 +18,7 @@ import { extractTextFromMarkdown } from 'dashboard/helper/editorHelper';
export default {
components: {
AttachmentPreview,
ReplyTopPanel,
LiteReplyTopPanel,
ReplyBottomPanel,
WootMessageEditor,
},
@@ -118,10 +118,7 @@ export default {
return window.__EDITOR_DISABLE_UPLOAD__ !== true;
},
replyButtonLabel() {
if (this.isPrivate) {
return this.$t('CONVERSATION.REPLYBOX.CREATE');
}
return this.$t('CONVERSATION.REPLYBOX.SEND');
return '↑';
},
replyBoxClass() {
return {
@@ -387,9 +384,8 @@ export default {
<template>
<div ref="replyEditor" class="reply-box" :class="replyBoxClass">
<ReplyTopPanel
<LiteReplyTopPanel
:mode="replyType"
disable-popout
:is-message-length-reaching-threshold="isMessageLengthReachingThreshold"
:characters-remaining="charactersRemaining"
@set-reply-mode="setReplyMode"