We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8efb339 commit 542e34aCopy full SHA for 542e34a
frontend/src/components/MatchStatus.vue
@@ -120,9 +120,9 @@ const isTimeout = computed(() => {
120
121
const timeoutTime = computed(() => {
122
if (refereeStore.refereeMsg.command === Referee_Command.TIMEOUT_BLUE) {
123
- return (refereeStore.refereeMsg.blue?.timeoutTime || 0) * 1000 // Convert to microseconds
+ return refereeStore.refereeMsg.blue?.timeoutTime || 0
124
} else if (refereeStore.refereeMsg.command === Referee_Command.TIMEOUT_YELLOW) {
125
- return (refereeStore.refereeMsg.yellow?.timeoutTime || 0) * 1000 // Convert to microseconds
+ return refereeStore.refereeMsg.yellow?.timeoutTime || 0
126
}
127
return 0
128
})
0 commit comments