Fix bug...
This commit is contained in:
parent
d915f901e9
commit
36cbec6c3d
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ const partyLineModel = computed({
|
||||||
});
|
});
|
||||||
|
|
||||||
const sendRumor = async () => {
|
const sendRumor = async () => {
|
||||||
if (partyLine.value.trim() && rumor.value.trim()) {
|
if (partyLineModel.value.trim() && rumor.value.trim()) {
|
||||||
try {
|
try {
|
||||||
const response = await fetch(useGetServer() + '/rumor', {
|
const response = await fetch(useGetServer() + '/rumor', {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
|
|
Loading…
Add table
Reference in a new issue