Skip to content

Commit a03c4d1

Browse files
committed
fix deprecated
1 parent 06bd989 commit a03c4d1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

proxy.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// const target = 'https://gitlab-ci-dashboard.larscom.nl'
2-
const target = 'http://localhost:8080'
1+
const target = 'https://gitlab-ci-dashboard.larscom.nl'
2+
// const target = 'http://localhost:8080'
33

44
module.exports = {
55
'/api/**': {

src/app/groups/group-tabs/feature-tabs/feature-tabs.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<nz-tabset
1+
<nz-tabs
22
[nzDestroyInactiveTabPane]="true"
33
[nzSelectedIndex]="selectedIndex$ | async"
44
(nzSelectChange)="onChange($event)"
@@ -28,4 +28,4 @@
2828
</ng-template>
2929
</nz-tab>
3030
}
31-
</nz-tabset>
31+
</nz-tabs>

src/app/groups/group-tabs/feature-tabs/latest-pipelines/pipeline-status-tabs/pipeline-status-tabs.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if (tabs().length) {
2-
<nz-tabset nzType="card">
2+
<nz-tabs nzType="card">
33
@for (tab of tabs(); track trackByStatus(tab)) {
44
<nz-tab [nzTitle]="title">
55
<ng-template #title>
@@ -18,7 +18,7 @@
1818
</ng-template>
1919
</nz-tab>
2020
}
21-
</nz-tabset>
21+
</nz-tabs>
2222
} @else {
2323
<gcd-pipeline-table [projects]="[]" />
2424
}

src/app/groups/group-tabs/group-tabs.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</div>
55
} @else {
66
@if (groups().length > 0) {
7-
<nz-tabset
7+
<nz-tabs
88
[nzTabBarExtraContent]="favorites"
99
nzSize="small"
1010
nzType="card"
@@ -30,7 +30,7 @@
3030
</ng-template>
3131
</nz-tab>
3232
}
33-
</nz-tabset>
33+
</nz-tabs>
3434
<ng-template #favorites>
3535
<button nz-button nzType="text" (click)="toggleFavorites()">
3636
<span nz-icon nzType="star" nzTheme="fill" nzTheme="twotone" nzTwotoneColor="#FFD700"></span>

0 commit comments

Comments
 (0)