Skip to content

Commit

Permalink
Improve secret envvar overlap error message
Browse files Browse the repository at this point in the history
  • Loading branch information
dotNomad committed Oct 2, 2024
1 parent f72e8a5 commit 70040cf
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@
<template v-if="home.duplicatedEnvironmentVariables.length">
<p>
<template v-if="home.duplicatedEnvironmentVariables.length === 1">
A duplicate name was
A variable was set as both a secret and environment variable. It
must only be set as one or the other.
</template>
<template v-if="home.duplicatedEnvironmentVariables.length > 1">
Duplicate names were
Variables were set as both secrets and environment variables. They
must only be set as one or the other.
</template>
found in Secrets and Environment.
<a
class="webview-link"
role="button"
Expand Down

0 comments on commit 70040cf

Please sign in to comment.