Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify "Push to stage" dialog env var statement #4604

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions frontend/src/components/pipelines/DeployStageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<template v-else-if="stage.action === StageAction.PROMPT">
use the snapshot selected below from "{{ stage.name }}" and
</template>
copy over all flows, nodes and credentials to "{{ target?.name }}".
copy over all flows, nodes, environment variables and credentials to "{{ target?.name }}".
</p>
<template v-if="target?.stageType === StageType.DEVICEGROUP">
<p class="my-4">
Expand All @@ -34,8 +34,7 @@
</p>
</template>
<p class="my-4">
It will also transfer the keys, but not the values, of any newly created Environment
Variables not currently in the target {{ targetTypeName }}.
NOTE: Environment variables in the target {{ targetTypeName }} that already have a value will not be overwritten.
</p>

<template v-if="(promptForSnapshot || useLatestSnapshot) && loadingSnapshots">
Expand Down
Loading