diff --git a/client/src/components/WorkflowInvocationState/VegaWrapper.vue b/client/src/components/WorkflowInvocationState/VegaWrapper.vue index fb76e6e4875f..8a46fec2fd0a 100644 --- a/client/src/components/WorkflowInvocationState/VegaWrapper.vue +++ b/client/src/components/WorkflowInvocationState/VegaWrapper.vue @@ -9,15 +9,18 @@ import { computed, onBeforeUnmount, onMounted, ref, watch } from "vue"; export interface VisSpec { spec: VisualizationSpec; - width: string; + fillWidth?: boolean; } const props = withDefaults(defineProps(), { - width: "100%", + fillWidth: true, }); const style = computed(() => { - return { width: props.width }; + if (props.fillWidth) { + return { width: "100%" }; + } + return {}; }); const chartContainer = ref(null); diff --git a/client/src/components/WorkflowInvocationState/WorkflowInvocationMetrics.vue b/client/src/components/WorkflowInvocationState/WorkflowInvocationMetrics.vue index 3a1a1bbf8e19..40f46da6db23 100644 --- a/client/src/components/WorkflowInvocationState/WorkflowInvocationMetrics.vue +++ b/client/src/components/WorkflowInvocationState/WorkflowInvocationMetrics.vue @@ -395,15 +395,15 @@ const groupByInTitles = computed(() => { - +

Aggregate (in {{ timingInTitles }})

- +
- +

Aggregate { text="Allocated Core Time" /> (in {{ timingInTitles }})

- +

- + {{ key }}