From 10e8048a05df7fc448a760b432fb4c51e65e732f Mon Sep 17 00:00:00 2001 From: Jan Date: Mon, 18 May 2026 14:00:49 +0200 Subject: [PATCH] improve(plan): disable exchange popover on recipe selector --- src/features/planning/components/PlanProductionRecipe.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/features/planning/components/PlanProductionRecipe.vue b/src/features/planning/components/PlanProductionRecipe.vue index 4e7cb221..be05ca7c 100644 --- a/src/features/planning/components/PlanProductionRecipe.vue +++ b/src/features/planning/components/PlanProductionRecipe.vue @@ -215,7 +215,8 @@ v-for="material in rowData.inputs" :key="`${rowData.building_ticker}#INPUT#${material.material_ticker}`" :ticker="material.material_ticker" - :amount="material.material_amount" /> + :amount="material.material_amount" + :enable-popover="false" /> @@ -238,7 +239,8 @@ v-for="material in rowData.outputs" :key="`${rowData.building_ticker}#OUTPUT#${material.material_ticker}`" :ticker="material.material_ticker" - :amount="material.material_amount" /> + :amount="material.material_amount" + :enable-popover="false" />