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 f0aa07e commit 7031578Copy full SHA for 7031578
frontend/src/components/MatchStateToolbar.vue
@@ -40,6 +40,9 @@ const currentActionTime = computed(() => {
40
const goals = (team: Team) => {
41
return store.matchState.teamState![team].goals!
42
}
43
+const statusMessage = computed(() => {
44
+ return store.matchState.statusMessage
45
+})
46
</script>
47
48
<template>
@@ -51,6 +54,9 @@ const goals = (team: Team) => {
51
54
<template v-if="currentActionTime">
52
55
({{ currentActionTime }} left)
53
56
</template>
57
+ <template v-if="statusMessage">
58
+ ({{ statusMessage }})
59
+ </template>
60
</div>
61
62
<div class="col-grow">
0 commit comments