mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-25 10:19:06 +01:00
parent
d90be23e00
commit
82c9428b45
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ const typing = throttle(3000, () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
let draftKey = $computed(() => props.user ? 'user:' + props.user.id : 'group:' + props.group?.id);
|
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);
|
watch([$$(text), $$(file)], saveDraft);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue