Skip to content

Commit 12c61ca

Browse files
committed
Reduce dedup length so that dealy to disable button is minimal
1 parent bff4933 commit 12c61ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Frontend/src/components/failedmessages/EditRetryDialog2.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const debounceBodyUpdate = debounce((value: string) => {
6060
const newValue = value.replaceAll(regExToPruneLineEndings, "");
6161
localMessage.value.isBodyChanged = newValue !== uneditedMessageBody.value.replaceAll(regExToPruneLineEndings, "");
6262
localMessage.value.isBodyEmpty = newValue === "";
63-
}, 1000);
63+
}, 100);
6464
6565
watch(
6666
() => localMessage.value.messageBody,

0 commit comments

Comments
 (0)