mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
clean up copy around addresses table
This commit is contained in:
@@ -44,20 +44,20 @@ import { DomainHealthService } from './domain-health.service'
|
||||
<button
|
||||
tuiIconButton
|
||||
appearance="flat-grayscale"
|
||||
iconStart="@tui.globe"
|
||||
iconStart="@tui.settings"
|
||||
(click)="showDnsValidation()"
|
||||
>
|
||||
{{ 'Domain Setup' | i18n }}
|
||||
{{ 'Address Requirements' | i18n }}
|
||||
</button>
|
||||
}
|
||||
@if (address().hostnameInfo.metadata.kind === 'private-domain') {
|
||||
<button
|
||||
tuiIconButton
|
||||
appearance="flat-grayscale"
|
||||
iconStart="@tui.globe"
|
||||
iconStart="@tui.settings"
|
||||
(click)="showPrivateDnsValidation()"
|
||||
>
|
||||
{{ 'Domain Setup' | i18n }}
|
||||
{{ 'Address Requirements' | i18n }}
|
||||
</button>
|
||||
}
|
||||
@if (
|
||||
@@ -68,10 +68,10 @@ import { DomainHealthService } from './domain-health.service'
|
||||
<button
|
||||
tuiIconButton
|
||||
appearance="flat-grayscale"
|
||||
iconStart="@tui.globe"
|
||||
iconStart="@tui.settings"
|
||||
(click)="showPortForwardValidation()"
|
||||
>
|
||||
{{ 'Port Forwarding' | i18n }}
|
||||
{{ 'Address Requirements' | i18n }}
|
||||
</button>
|
||||
}
|
||||
<button
|
||||
@@ -127,20 +127,20 @@ import { DomainHealthService } from './domain-health.service'
|
||||
<button
|
||||
tuiOption
|
||||
new
|
||||
iconStart="@tui.heart-pulse"
|
||||
iconStart="@tui.settings"
|
||||
(click)="showDnsValidation()"
|
||||
>
|
||||
{{ 'Domain Setup' | i18n }}
|
||||
{{ 'Address Requirements' | i18n }}
|
||||
</button>
|
||||
}
|
||||
@if (address().hostnameInfo.metadata.kind === 'private-domain') {
|
||||
<button
|
||||
tuiOption
|
||||
new
|
||||
iconStart="@tui.heart-pulse"
|
||||
iconStart="@tui.settings"
|
||||
(click)="showPrivateDnsValidation()"
|
||||
>
|
||||
{{ 'Domain Setup' | i18n }}
|
||||
{{ 'Address Requirements' | i18n }}
|
||||
</button>
|
||||
}
|
||||
@if (
|
||||
@@ -150,10 +150,10 @@ import { DomainHealthService } from './domain-health.service'
|
||||
<button
|
||||
tuiOption
|
||||
new
|
||||
iconStart="@tui.heart-pulse"
|
||||
iconStart="@tui.settings"
|
||||
(click)="showPortForwardValidation()"
|
||||
>
|
||||
{{ 'Port Forwarding' | i18n }}
|
||||
{{ 'Address Requirements' | i18n }}
|
||||
</button>
|
||||
}
|
||||
@if (address().deletable) {
|
||||
|
||||
@@ -137,7 +137,7 @@ export class DomainHealthService {
|
||||
) {
|
||||
this.dialog
|
||||
.openComponent(DOMAIN_VALIDATION, {
|
||||
label: 'Domain Setup',
|
||||
label: 'Address Requirements',
|
||||
size: 'm',
|
||||
data: { fqdn, gateway, port, initialResults },
|
||||
})
|
||||
@@ -151,7 +151,7 @@ export class DomainHealthService {
|
||||
) {
|
||||
this.dialog
|
||||
.openComponent(PORT_FORWARD_VALIDATION, {
|
||||
label: 'Port Forwarding',
|
||||
label: 'Address Requirements',
|
||||
size: 'm',
|
||||
data: { gateway, port, initialResults },
|
||||
})
|
||||
@@ -164,7 +164,7 @@ export class DomainHealthService {
|
||||
) {
|
||||
this.dialog
|
||||
.openComponent(PRIVATE_DNS_VALIDATION, {
|
||||
label: 'Domain Setup',
|
||||
label: 'Address Requirements',
|
||||
size: 'm',
|
||||
data: { gateway, initialResults },
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user