Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
derschnee68 committed May 6, 2024
1 parent b7ea176 commit dcf2a78
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ export class ResourceToolbarComponent implements OnInit {

editResourceLabel() {
this._dialog
.open<EditResourceLabelDialogComponent, EditResourceLabelDialogProps, boolean>(EditResourceLabelDialogComponent)
.open<EditResourceLabelDialogComponent, EditResourceLabelDialogProps, boolean>(EditResourceLabelDialogComponent, {
data: { resource: this.resource.res },
})
.afterClosed()
.pipe(filter(answer => !!answer))
.subscribe(answer => {
Expand Down

0 comments on commit dcf2a78

Please sign in to comment.