ui: Update conditional for topology empty state (#10124)
This commit is contained in:
parent
c9b7fe5051
commit
d191b2c552
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
ui: Update conditional for topology empty state
|
||||
```
|
|
@ -3,7 +3,7 @@
|
|||
as |route|>
|
||||
<EventSource @src={{topology}} />
|
||||
<div class="tab-section">
|
||||
{{#if (and (eq topology.Upstreams.length 0) (eq topology.Downstreams.length 0))}}
|
||||
{{#if (and (eq topology.Upstreams.length 0) (eq topology.Downstreams.length 0) (not topology.DefaultAllow) (not topology.WildcardIntention))}}
|
||||
<EmptyState>
|
||||
<BlockSlot @name="header">
|
||||
<h2>
|
||||
|
|
Loading…
Reference in New Issue