ui: Fix dropdown option duplications (#10706)

This commit is contained in:
Kenia 2021-07-27 17:34:11 -04:00 committed by GitHub
parent 33d7d48767
commit f7f6381224
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

3
.changelog/10706.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:bug
ui: Fix dropdown option duplication in the new intentions form
```

View File

@ -39,7 +39,7 @@
@buildSuggestion={{action "createNewLabel" "Use a Consul Namespace called '{{term}}'"}} @buildSuggestion={{action "createNewLabel" "Use a Consul Namespace called '{{term}}'"}}
@showCreateWhen={{action "isUnique" nspaces}} @showCreateWhen={{action "isUnique" nspaces}}
@onCreate={{action onchange "SourceNS"}} @onCreate={{action onchange "SourceNS"}}
@onChange={{action onchange "SourceNS"}} as |nspace|> @onChange={{fn (mut this.SourceNS)}} as |nspace|>
{{#if (eq nspace.Name '*') }} {{#if (eq nspace.Name '*') }}
* (All Namespaces) * (All Namespaces)
{{else}} {{else}}
@ -88,7 +88,7 @@
@buildSuggestion={{action "createNewLabel" "Use a future Consul Namespace called '{{term}}'"}} @buildSuggestion={{action "createNewLabel" "Use a future Consul Namespace called '{{term}}'"}}
@showCreateWhen={{action "isUnique" nspaces}} @showCreateWhen={{action "isUnique" nspaces}}
@onCreate={{action onchange "DestinationNS"}} @onCreate={{action onchange "DestinationNS"}}
@onChange={{action onchange "DestinationNS"}} as |nspace|> @onChange={{fn (mut this.DestinationNS)}} as |nspace|>
{{#if (eq nspace.Name '*') }} {{#if (eq nspace.Name '*') }}
* (All Namespaces) * (All Namespaces)
{{else}} {{else}}