Skip to content

Commit

Permalink
fix process editor not opening
Browse files Browse the repository at this point in the history
  • Loading branch information
franzmueller committed Dec 6, 2024
1 parent 70464de commit f34c05d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@
</mat-checkbox>
<div fxFlex></div>
<button *ngIf="userHasUpdateAuthorization" mat-icon-button color="accent" matTooltip="Edit"
routerLink="/processes/designer/{{item.value.id}}">
routerLink="/processes/designer/{{item.value._id}}">
<mat-icon>edit</mat-icon>
</button>
<button mat-icon-button matTooltip="Deploy" color="accent"
(click)="deployProcess(item.value.id)"
(click)="deployProcess(item.value._id)"
[disabled]="!hasXPermission(item.value)">
<mat-icon>publish</mat-icon>
</button>
Expand Down

0 comments on commit f34c05d

Please sign in to comment.