diff --git a/src/components/History/RunCard.vue b/src/components/History/RunCard.vue index 21b0b63..2d70851 100644 --- a/src/components/History/RunCard.vue +++ b/src/components/History/RunCard.vue @@ -19,14 +19,6 @@ const props = defineProps(); const { run } = toRefs(props); -const stateChipColor = ref({ - initialized: "success", - running: "primary", - exited: "warning", - finished: "warning", - closed: "warning", -}); - function formatDateTime(dateTime: string) { if (!dateTime) return; const sinceEpoch = Date.parse(dateTime); @@ -93,18 +85,12 @@ watch(
Run: {{ run.runNo }} - - {{ run.state }} - + ⋅ + {{ run.state }} Started at: - - {{ formatDateTime(run.startedAt || "") }} {{ formatDateTime(run.startedAt || "") }}
Ended at: @@ -115,18 +101,12 @@ watch(
- + Uncaught exception: -

+          

         
diff --git a/src/views/db/RunView.vue b/src/views/db/RunView.vue index dcbf944..2caabf6 100644 --- a/src/views/db/RunView.vue +++ b/src/views/db/RunView.vue @@ -46,7 +46,7 @@ const run = computed(() => queryResponse.data.value?.rdb.run); height: calc(100% - 2 * 12px); width: calc(100% - 2 * 12px); justify-content: center; - grid-template-columns: minmax(min-content, 80%); + grid-template-columns: minmax(min-content, 960px); grid-template-rows: min-content min-content 1fr; grid-template-areas: "navi" "button" "card"; }