Skip to content

Commit 2410404

Browse files
committed
Improve formulation of robot substitution
1 parent 3ad2a50 commit 2410404

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/views/ControlButtons.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ const robotSubstitutionRequested = computed(() => state.value.activeRequests.inc
2525
const robotDiff = computed(() => {
2626
const diff = state.value.maxRobots - state.value.robotsOnField
2727
if (diff > 0) {
28-
return `Add ${diff} more`
28+
return `Add up to ${diff} robots`
2929
}
3030
if (diff < 0) {
31-
return `Remove ${diff}`
31+
return `Remove ${diff} robots`
3232
}
3333
return ''
3434
})

0 commit comments

Comments
 (0)