From 711f5021a9c5925d2c795a55390664aea2e1bee3 Mon Sep 17 00:00:00 2001 From: Adrian <95376249+asylves1@users.noreply.github.com> Date: Fri, 27 Sep 2024 16:07:20 -0400 Subject: [PATCH] multiple input field open when selecting one (#4957) --- .../ops/document/tera-document-operation-drilldown.vue | 2 -- .../tera-model-from-equations-drilldown.vue | 8 +++++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/client/hmi-client/src/components/workflow/ops/document/tera-document-operation-drilldown.vue b/packages/client/hmi-client/src/components/workflow/ops/document/tera-document-operation-drilldown.vue index c86a8811aa..8148090bc3 100644 --- a/packages/client/hmi-client/src/components/workflow/ops/document/tera-document-operation-drilldown.vue +++ b/packages/client/hmi-client/src/components/workflow/ops/document/tera-document-operation-drilldown.vue @@ -143,12 +143,10 @@ onMounted(async () => { return asset; }) ); - // .map((equation, index) => equation.name = `equation ${index+1}`) } if (equations.value && equations.value?.length > 0) { clonedState.value.equations = equations.value; } - isFetchingPDF.value = false; } }); diff --git a/packages/client/hmi-client/src/components/workflow/ops/model-from-equations/tera-model-from-equations-drilldown.vue b/packages/client/hmi-client/src/components/workflow/ops/model-from-equations/tera-model-from-equations-drilldown.vue index 65b3759f31..3a4f417423 100644 --- a/packages/client/hmi-client/src/components/workflow/ops/model-from-equations/tera-model-from-equations-drilldown.vue +++ b/packages/client/hmi-client/src/components/workflow/ops/model-from-equations/tera-model-from-equations-drilldown.vue @@ -1,6 +1,7 @@