mirror of https://github.com/rancher/ui.git
13 lines
491 B
Handlebars
13 lines
491 B
Handlebars
<div class="{{if textMuted 'text-muted' }} clip">
|
|
{{#if (and model.externalIpAddress (not-eq model.externalIpAddress model.ipAddress))}}
|
|
{{#copy-to-clipboard clipboardText=model.externalIpAddress size="small"}}
|
|
{{format-ip model.externalIpAddress}}
|
|
{{/copy-to-clipboard}}
|
|
/
|
|
{{/if}}
|
|
{{#if model.ipAddress}}
|
|
{{#copy-to-clipboard clipboardText=model.ipAddress size="small"}}
|
|
{{format-ip model.ipAddress}}
|
|
{{/copy-to-clipboard}}
|
|
{{/if}}
|
|
</div> |