mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 22:34:55 +00:00
355f034822
This gives more prominence to 'Service Instances' as opposed to 'Services'. It also begins to surface Connect related 'nouns' such as 'Proxies' and 'Upstreams' and begins to interconnect them giving more visibility to operators. Various smaller changes: 1. Move healthcheck-status component to healthcheck-output 2. Create a new healthcheck-status component for showing the number of checks plus its icon 3. Create a new healthcheck-info component to group multiple statuses plus a different view if there are no checks 4. Componentize tag-list
25 lines
713 B
Handlebars
25 lines
713 B
Handlebars
{{#feedback-dialog type='inline'}}
|
|
{{#block-slot 'action' as |success error|}}
|
|
{{#copy-button success=(action success) error=(action error) clipboardText=output title='copy output to clipboard'}}
|
|
Copy Output
|
|
{{/copy-button}}
|
|
{{/block-slot}}
|
|
{{#block-slot 'success' as |transition|}}
|
|
<p class={{transition}}>
|
|
Copied IP Address!
|
|
</p>
|
|
{{/block-slot}}
|
|
{{#block-slot 'error' as |transition|}}
|
|
<p class={{transition}}>
|
|
Sorry, something went wrong!
|
|
</p>
|
|
{{/block-slot}}
|
|
{{/feedback-dialog}}
|
|
<dl>
|
|
<dt>{{name}}</dt>
|
|
<dd>{{notes}}</dd>
|
|
<dt>Output</dt>
|
|
<dd>
|
|
<pre><code>{{output}}</code></pre>
|
|
</dd>
|
|
</dl> |