Skip to content

Commit 218a8c1

Browse files
committed
Don't truncate numbers in task state badge
1 parent 73f4859 commit 218a8c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/cylc/TaskStateBadge.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
:class="state"
2222
v-tooltip="{ text: tooltip, openDelay: 400, location: 'top' }"
2323
>
24-
{{ value > 99 ? '99+' : value }}
24+
{{ value }}
2525
</div>
2626
</template>
2727

0 commit comments

Comments
 (0)