We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8071f1a commit c2cefc3Copy full SHA for c2cefc3
src/routes/chat/[agentId]/[conversationId]/chat-box.svelte
@@ -728,13 +728,14 @@
728
729
<DialogModal
730
title={'Edit message'}
731
+ size={'md'}
732
isOpen={isOpenEditMsgModal}
733
toggleModal={toggleEditMsgModal}
734
confirm={confirmEditMsg}
735
cancel={toggleEditMsgModal}
736
disableConfirmBtn={!!!_.trim(editText)}
737
>
- <textarea class="form-control chat-input" rows="10" maxlength={500} bind:value={editText} placeholder="Enter Message..." />
738
+ <textarea class="form-control chat-input" rows="3" maxlength={500} bind:value={editText} placeholder="Enter Message..." />
739
</DialogModal>
740
741
<StateModal
0 commit comments