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