fix: 🐛 can't send blank messages

Closes #9661
This commit is contained in:
ThatOneCalculator 2023-03-19 20:02:14 -07:00
parent d90be23e00
commit 82c9428b45

View File

@ -57,7 +57,7 @@ const typing = throttle(3000, () => {
});
let draftKey = $computed(() => props.user ? 'user:' + props.user.id : 'group:' + props.group?.id);
let canSend = $computed(() => (text != null && text !== '') || file != null);
let canSend = $computed(() => (text != null && text.trim() !== '') || file != null);
watch([$$(text), $$(file)], saveDraft);