diff --git a/src/lib/components/chat/Messages/RateComment.svelte b/src/lib/components/chat/Messages/RateComment.svelte index 6bb8cfee2..8ecbe09c7 100644 --- a/src/lib/components/chat/Messages/RateComment.svelte +++ b/src/lib/components/chat/Messages/RateComment.svelte @@ -50,15 +50,15 @@ loadReasons(); }); - const submitHandler = () => { - console.log('submitHandler'); + const saveHandler = () => { + console.log('saveHandler'); if (!selectedReason) { toast.error($i18n.t('Please select a reason')); return; } - dispatch('submit', { + dispatch('save', { reason: selectedReason, comment: comment }); @@ -124,10 +124,10 @@ <button class=" bg-emerald-700 text-white text-sm font-medium rounded-lg px-3.5 py-1.5" on:click={() => { - submitHandler(); + saveHandler(); }} > - {$i18n.t('Submit')} + {$i18n.t('Save')} </button> </div> </div> diff --git a/src/lib/components/chat/Messages/ResponseMessage.svelte b/src/lib/components/chat/Messages/ResponseMessage.svelte index ad49697de..9676835e4 100644 --- a/src/lib/components/chat/Messages/ResponseMessage.svelte +++ b/src/lib/components/chat/Messages/ResponseMessage.svelte @@ -1103,7 +1103,7 @@ <RateComment bind:message bind:show={showRateComment} - on:submit={(e) => { + on:save={(e) => { dispatch('save', { ...message, annotation: {