Skip to content

Commit

Permalink
Merge branch 'stage' for v1.4.1 hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
fcv-iteratorIt committed Mar 14, 2023
2 parents f9cc48d + 42b34c2 commit a398d2a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class ApplicationDetailComponent implements OnInit, OnDestroy {
this.bindApplication(this.id);
this.dropdownButton = {
label: '',
editRouterLink: '../../edit-application/' + this.id,
editRouterLink: '../edit-application/' + this.id,
isErasable: true,
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
[attr.aria-label]="'DATATARGET-TABLE-ROW.SHOW-OPTIONS' | translate"></a>
<ul class="dropdown-menu dropdown-menu--table" attr.aria-labelledby="tableRowDropdown-{{element.id}}">
<li class="dropdown-item">
<a [routerLink]="['datatarget-edit', element.id]"
<a [routerLink]="['../datatarget-edit', element.id]"
routerLinkActive="active">{{ 'GEN.EDIT' | translate }}</a>
</li>
<li class="dropdown-item">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
[attr.aria-label]="'APPLICATION-TABLE-ROW.SHOW-OPTIONS' | translate"></a>
<ul class="dropdown-menu dropdown-menu--table" attr.aria-labelledby="tableRowDropdown-{{element.id}}">
<li class="dropdown-item">
<a [routerLink]="['iot-device-edit', element.id]" routerLinkActive="active">{{ 'IOTDEVICE-TABLE-ROW.EDIT'
<a [routerLink]="['../iot-device-edit', element.id]" routerLinkActive="active">{{ 'IOTDEVICE-TABLE-ROW.EDIT'
| translate }}
</a>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
[attr.aria-label]="'MULTICAST-TABLE-ROW.SHOW-OPTIONS' | translate"></a>
<ul class="dropdown-menu dropdown-menu--table" attr.aria-labelledby="tableRowDropdown-{{element.id}}">
<li class="dropdown-item">
<a [routerLink]="['multicast-edit', element.id]"
<a [routerLink]="['../multicast-edit', element.id]"
routerLinkActive="active">{{ 'GEN.EDIT' | translate }}</a>
</li>
<li class="dropdown-item">
Expand Down
2 changes: 1 addition & 1 deletion src/app/gateway/gateway-table/gateway-table.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<ul class="dropdown-menu dropdown-menu--table"
attr.aria-labelledby="tableRowDropdown-{{ element.id }}">
<li class="dropdown-item">
<a [routerLink]="['gateway-edit', element.id]" routerLinkActive="active">{{ 'GEN.EDIT' |
<a [routerLink]="['../gateway-edit', element.id]" routerLinkActive="active">{{ 'GEN.EDIT' |
translate }}</a>
</li>
<li class="dropdown-item">
Expand Down
1 change: 0 additions & 1 deletion src/app/shared/components/top-bar/top-bar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ export class TopBarComponent implements OnInit {
) {
this.router.navigate([this.backButton.routerLink]);
} else {
console.log('back here');
this.location.back();
}
}
Expand Down

0 comments on commit a398d2a

Please sign in to comment.