From cf5078aaba8df3dffe36394180470b8a76fe9def Mon Sep 17 00:00:00 2001 From: Arman Date: Tue, 22 Aug 2023 19:00:35 +0200 Subject: [PATCH] fix: missing modals --- .../console/project-[project]/promoteVariableModal.svelte | 5 +++-- .../console/project-[project]/uploadVariablesModal.svelte | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/routes/console/project-[project]/promoteVariableModal.svelte b/src/routes/console/project-[project]/promoteVariableModal.svelte index 7d158cc12..785ef5f74 100644 --- a/src/routes/console/project-[project]/promoteVariableModal.svelte +++ b/src/routes/console/project-[project]/promoteVariableModal.svelte @@ -19,8 +19,9 @@ icon="exclamation" state="warning" headerDivider={false}> - {isConflicting ? 'Overwrite global variable' : 'Promote variable'} + + {isConflicting ? 'Overwrite global variable' : 'Promote variable'} + {#if isConflicting}

Promoting this variable will overwrite your global variable with the same name. Are you diff --git a/src/routes/console/project-[project]/uploadVariablesModal.svelte b/src/routes/console/project-[project]/uploadVariablesModal.svelte index 7473b4a5e..1d8e7b406 100644 --- a/src/routes/console/project-[project]/uploadVariablesModal.svelte +++ b/src/routes/console/project-[project]/uploadVariablesModal.svelte @@ -61,8 +61,9 @@ - Import new {isGlobal ? 'global' : 'environment'} variables + + Import new {isGlobal ? 'global' : 'environment'} variables +

Import new {isGlobal ? 'global' : 'environment'} variables from .env file that will be passed