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 3ad2a50 commit 2410404Copy full SHA for 2410404
src/views/ControlButtons.vue
@@ -25,10 +25,10 @@ const robotSubstitutionRequested = computed(() => state.value.activeRequests.inc
25
const robotDiff = computed(() => {
26
const diff = state.value.maxRobots - state.value.robotsOnField
27
if (diff > 0) {
28
- return `Add ${diff} more`
+ return `Add up to ${diff} robots`
29
}
30
if (diff < 0) {
31
- return `Remove ${diff}`
+ return `Remove ${diff} robots`
32
33
return ''
34
})
0 commit comments