mirror of
https://github.com/status-im/consul.git
synced 2025-02-03 17:34:08 +00:00
b78ef1fee0
* Upgrade consul-api-dobule to version 3.1.3 * Create ConsulInstaceChecks component with test * Redesign: Service Instaces tab in for a Node * Update Node tests to work with the ConsulServiceInstancesList * Style fix to the copy button in the composite-row details * Delete helper and move logic to ConsulInstanceChecks component * Delete unused component consul-node-service-list
22 lines
703 B
Handlebars
22 lines
703 B
Handlebars
<div id="services" class="tab-section">
|
|
<div role="tabpanel">
|
|
{{#if (gt items.length 0) }}
|
|
<input type="checkbox" id="toolbar-toggle" />
|
|
<SearchBar
|
|
@placeholder="Search by name/port"
|
|
@value={{search}}
|
|
@onsearch={{action (mut search) value="target.value"}}
|
|
/>
|
|
{{/if}}
|
|
<ChangeableSet @dispatcher={{searchable 'nodeservice' items}} @terms={{search}}>
|
|
<BlockSlot @name="set" as |filtered|>
|
|
<ConsulServiceInstanceList @routeName="dc.services.show" @items={{filtered}} @checks={{checks}}/>
|
|
</BlockSlot>
|
|
<BlockSlot @name="empty">
|
|
<p>
|
|
There are no services.
|
|
</p>
|
|
</BlockSlot>
|
|
</ChangeableSet>
|
|
</div>
|
|
</div> |