Skip to content

Commit

Permalink
bugfix: modal dialog can be ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
ck-c8y committed Oct 8, 2024
1 parent a891d97 commit b00fbe5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -692,8 +692,9 @@ export class MappingStepperComponent implements OnInit, OnDestroy {
// this.alertService.warning(
// 'To apply the mapping to messages you have to select at least one connector. Go back, unless you only want to assign a connector later!'
// );
} else {
event.stepper.next();
}
event.stepper.next();
} else if (this.step == 'General settings') {
this.templateModel.mapping = this.mapping;
// console.log(
Expand Down

0 comments on commit b00fbe5

Please sign in to comment.