open-consul/ui/packages/consul-ui/app/components/consul/node/agentless-notice/index.hbs

29 lines
840 B
Handlebars
Raw Normal View History

{{#if isVisible}}
2022-10-13 16:21:56 +00:00
<Notice data-test-node-agentless-notice @type='info' class='agentless-node-notice' as |notice|>
<notice.Header>
<h3>
2022-10-13 16:21:56 +00:00
{{t 'routes.dc.nodes.index.agentless.notice.header'}}
</h3>
2022-10-13 16:21:56 +00:00
<button type='button' aria-label='Dismiss notice' {{on 'click' this.dismissAgentlessNotice}}>
<FlightIcon @name='x' />
</button>
</notice.Header>
<notice.Body>
<p>
2022-10-13 16:21:56 +00:00
{{t 'routes.dc.nodes.index.agentless.notice.body'}}
</p>
</notice.Body>
<notice.Footer>
2022-10-13 16:21:56 +00:00
<p class='docs-link'>
<a
href='{{env "CONSUL_DOCS_DEVELOPER_URL"}}/connect/dataplane'
target='_blank'
rel='noopener noreferrer'
>
{{t 'routes.dc.nodes.index.agentless.notice.footer'}}
</a>
</p>
</notice.Footer>
</Notice>
{{/if}}