update: lower message length limit

This commit is contained in:
Tony Yang
2025-04-15 10:40:53 +08:00
parent ba0bc1a243
commit b07c056ee5
2 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ const emit = defineEmits(['new-message']);
const props = defineProps(['locked']);
const text = ref('');
const maxLength = 1024;
const maxLength = 200;
const remainingCharacters = computed(() => {
return maxLength - text.value.length;