Skip to content

Commit

Permalink
increase CQ timeouts from 6 to 10s
Browse files Browse the repository at this point in the history
  • Loading branch information
DJ2LS committed Nov 8, 2024
1 parent 546732b commit 68ec4d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion freedata_gui/src/components/grid/grid_CQ.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function handleCQCall() {
// Wait for 6 seconds (cooldown period)
setTimeout(() => {
isCQButtonDisabled.value = false;
}, 6000);
}, 10000);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function handleSendCQ() {
// Wait for 6 seconds (cooldown period)
setTimeout(() => {
isCQButtonDisabled.value = false;
}, 6000);
}, 10000);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async function handleSendCQ() {
// Wait for 6 seconds (cooldown period)
setTimeout(() => {
isCQButtonDisabled.value = false;
}, 6000);
}, 10000);
}
// Listen for the stationSelected event and update dxcallPing
Expand Down

0 comments on commit 68ec4d1

Please sign in to comment.