ui: Ensure we provide an id for filtering policy-tokens (#11311)
This commit is contained in:
parent
3f736467e6
commit
42391301a9
|
@ -0,0 +1,4 @@
|
|||
```release-note:bug
|
||||
ui: Ensure we filter tokens by policy when showing which tokens use a certain
|
||||
policy whilst editing a policy
|
||||
```
|
|
@ -29,11 +29,12 @@ as |route|>
|
|||
route.params.dc
|
||||
route.params.partition
|
||||
route.params.nspace
|
||||
(or route.params.id '')
|
||||
|
||||
loader.data
|
||||
loader.data.isNew
|
||||
|
||||
as |dc partition nspace item create|}}
|
||||
as |dc partition nspace id item create|}}
|
||||
<AppView
|
||||
@login={{route.model.app.login.open}}
|
||||
>
|
||||
|
@ -104,7 +105,7 @@ as |dc partition nspace item create|}}
|
|||
partition=partition
|
||||
nspace=nspace
|
||||
dc=dc
|
||||
id=(or id '')
|
||||
id=id
|
||||
)
|
||||
}}
|
||||
as |loader|>
|
||||
|
|
Loading…
Reference in New Issue