Skip to content

Commit 7ecbdb4

Browse files
committed
Fix inconsistent status display in interactive tools components
Changed main panel display to show "Starting" instead of "stopped" for inactive tools, matching the panel terminology since truly stopped tools don't appear in the entry point store.
1 parent c645eda commit 7ecbdb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/components/InteractiveTools/InteractiveTools.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ onMounted(() => {
139139
</a>
140140
</template>
141141
<template v-slot:cell(job_info)="row">
142-
<label v-if="row.item.active"> running </label>
143-
<label v-else> stopped </label>
142+
<label v-if="row.item.active"> Running </label>
143+
<label v-else> Starting </label>
144144
</template>
145145
<template v-slot:cell(created_time)="row">
146146
<UtcDate :date="row.item.created_time" mode="elapsed" />

0 commit comments

Comments
 (0)