File tree Expand file tree Collapse file tree 3 files changed +6
-12
lines changed Expand file tree Collapse file tree 3 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import {computed} from 'vue'
33import MatchStateToolbar from " @/components/MatchStateToolbar.vue" ;
44import ExternalConnectionStatus from " @/components/ExternalConnectionStatus.vue" ;
55import StoreUpdateCountStatus from " @/components/StoreUpdateCountStatus.vue" ;
6+ import StatusMessageButton from " @/components/match/StatusMessageButton.vue" ;
67import ManualControlView from " @/views/ManualControlView.vue" ;
78import ProtocolList from " @/components/protocol/ProtocolList.vue" ;
89import {useQuasar } from " quasar" ;
@@ -74,6 +75,7 @@ const dev = computed(() => {
7475 <q-toggle dense flat round class =" q-mx-sm" @click =" toggleShortcuts" :model-value =" showShortcuts" color =" black" >
7576 Show Shortcuts
7677 </q-toggle >
78+ <StatusMessageButton />
7779 <q-btn dense flat round icon =" menu" @click =" toggleRightDrawer" />
7880 </q-toolbar >
7981
Original file line number Diff line number Diff line change @@ -79,11 +79,9 @@ const onCustomStatusMessageSelected = () => {
7979 </script >
8080
8181<template >
82- <q-btn
83- label =" Status Message"
84- color =" primary"
85- @click =" dialogOpen = true"
86- />
82+ <q-btn flat @click =" dialogOpen = true" >
83+ <q-icon name =" message" color =" black" />
84+ </q-btn >
8785 <q-dialog v-model =" dialogOpen" >
8886 <q-card class =" q-px-sm q-pb-md" >
8987 <q-card-section class =" row items-center q-pb-none" >
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import SwitchSidesButton from "@/components/start/SwitchSidesButton.vue";
1313import GameEvents from " @/components/match/GameEvents.vue" ;
1414import {Command_Type } from " @/proto/ssl_gc_state" ;
1515import CommandButton from " @/components/control/CommandButton.vue" ;
16- import StatusMessageInput from " @/components/match/StatusMessageInput.vue" ;
1716
1817const store = useMatchStateStore ()
1918const gcStore = useGcStateStore ()
@@ -82,12 +81,7 @@ onUnmounted(() => {
8281 </q-card >
8382 </q-expansion-item >
8483 <div class =" row" >
85- <div class =" col" >
86- <AutoContinueInput />
87- </div >
88- <div class =" col" >
89- <StatusMessageInput />
90- </div >
84+ <AutoContinueInput />
9185 </div >
9286 <div class =" row justify-evenly" >
9387 Press
You can’t perform that action at this time.
0 commit comments