diff --git a/packages/client/hmi-client/src/components/workflow/ops/optimize-ciemss/tera-optimize-ciemss-drilldown.vue b/packages/client/hmi-client/src/components/workflow/ops/optimize-ciemss/tera-optimize-ciemss-drilldown.vue index 4a80b2431a..7c362e3c1e 100644 --- a/packages/client/hmi-client/src/components/workflow/ops/optimize-ciemss/tera-optimize-ciemss-drilldown.vue +++ b/packages/client/hmi-client/src/components/workflow/ops/optimize-ciemss/tera-optimize-ciemss-drilldown.vue @@ -198,6 +198,12 @@ Under construction. Use the wizard for now. + + + {{ key }}: + {{ formatJsonValue(value) }} + + ({}); const riskResults = ref<{ [runId: string]: any }>({}); const simulationRawContent = ref<{ [runId: string]: CsvAsset | null }>({}); const optimizationResult = ref(''); +const optimizeRequestPayload = ref(''); const modelParameterOptions = ref([]); const modelStateAndObsOptions = ref([]); @@ -750,6 +758,7 @@ const setOutputValues = async () => { runResultsSummary.value[postForecastRunId] = postResultSummary; optimizationResult.value = await getRunResult(knobs.value.optimizationRunId, 'optimize_results.json'); + optimizeRequestPayload.value = (await getSimulation(knobs.value.optimizationRunId))?.executionPayload || ''; }; const preProcessedInterventionsData = computed>(() => { @@ -903,11 +912,12 @@ watch( display: flex; flex-direction: row; gap: var(--gap-small); + overflow: auto; } .label { font-weight: bold; - width: 150px; /* Adjust the width of the label column as needed */ + width: 210px; /* Adjust the width of the label column as needed */ } .value { flex-grow: 1;
Under construction. Use the wizard for now.