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|>
|
as |route|>
|
||||||
<EventSource @src={{topology}} />
|
<EventSource @src={{topology}} />
|
||||||
<div class="tab-section">
|
<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>
|
<EmptyState>
|
||||||
<BlockSlot @name="header">
|
<BlockSlot @name="header">
|
||||||
<h2>
|
<h2>
|
||||||
|
|
Loading…
Reference in New Issue