Skip to content

Commit

Permalink
[#1322] Fix HTML attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
fivitti committed Oct 25, 2024
1 parent f6ffd2b commit 9b1ec62
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions webui/src/app/dashboard/dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<p class="pb-3">
The
<a target="blank" routerLink="/assets/arm/index.html">
<a target="_blank" routerLink="/assets/arm/index.html">
Stork documentation
<i class="pi pi-external-link text-xs"></i>
</a>
Expand Down Expand Up @@ -87,7 +87,7 @@ <h2 class="section-heading dashboard-section__header">
[title]="
getGrafanaTooltip(sn.localSubnets[0].id, sn.localSubnets[0].machineHostname)
"
target="blank"
target="_blank"
>
<i class="pi pi-chart-line text-2xl vertical-align-middle"></i>
</a>
Expand Down Expand Up @@ -211,7 +211,7 @@ <h2 class="section-heading dashboard-section__header">
[title]="
getGrafanaTooltip(sn.localSubnets[0].id, sn.localSubnets[0].machineHostname)
"
target="blank"
target="_blank"
>
<i class="pi pi-chart-line text-2xl vertical-align-middle"></i>
</a>
Expand Down
6 changes: 3 additions & 3 deletions webui/src/app/login-screen/login-screen.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<div class="login-screen__content">
<div class="login-screen__logo">
<img src="assets/stork-logo-big.png" />
<a href="https://stork.isc.org" target="blank" class="no-underline">Stork</a>
<a href="https://stork.isc.org" target="_blank" class="no-underline">Stork</a>
</div>
<div class="login-screen__version">version: {{ version }}</div>

<div class="login-screen-intro">
Dashboard for
<a href="https://kea.isc.org" target="blank">ISC Kea</a>
<a href="https://kea.isc.org" target="_blank">ISC Kea</a>
and
<a href="https://bind.isc.org" target="blank">ISC BIND 9</a>
<a href="https://bind.isc.org" target="_blank">ISC BIND 9</a>
</div>

<div class="login-screen__authentication">
Expand Down
2 changes: 1 addition & 1 deletion webui/src/app/machines-page/machines-page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
Copy these commands and paste them into a terminal on a machine where Stork Agent is going to be installed.
<br />
For more details check
<a target="blank" routerLink="/assets/arm/install.html#installing-from-packages"
<a target="_blank" routerLink="/assets/arm/install.html#installing-from-packages"
>the Stork Agent Installation instructions <i class="pi pi-external-link"></i></a
>.
</p>
Expand Down
2 changes: 1 addition & 1 deletion webui/src/app/subnets-table/subnets-table.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@
)
"
[title]="getGrafanaTooltip(sn.localSubnets[0].id, sn.localSubnets[0].machineHostname)"
target="blank"
target="_blank"
*ngIf="sn.localSubnets?.[0]"
>
<i class="pi pi-chart-line text-2xl"></i>
Expand Down
2 changes: 1 addition & 1 deletion webui/src/app/users-page/users-page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<p>
Administrative users can modify user privileges and passwords by clicking on the user name below. More
information in documentation in
<a href="https://stork.readthedocs.io/en/latest/usage.html#managing-users" target="blank"
<a href="https://stork.readthedocs.io/en/latest/usage.html#managing-users" target="_blank"
>user and password management</a
>
chapter.
Expand Down

0 comments on commit 9b1ec62

Please sign in to comment.