Commit 7ecbdb46 authored by Dannon Baker's avatar Dannon Baker
Browse files

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.
parent c645edaa
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -139,8 +139,8 @@ onMounted(() => {
                </a>
            </template>
            <template v-slot:cell(job_info)="row">
                <label v-if="row.item.active"> running </label>
                <label v-else> stopped </label>
                <label v-if="row.item.active"> Running </label>
                <label v-else> Starting </label>
            </template>
            <template v-slot:cell(created_time)="row">
                <UtcDate :date="row.item.created_time" mode="elapsed" />