Skip to content

Commit

Permalink
NAS-130734: Fix empty observer (#10846)
Browse files Browse the repository at this point in the history
Co-authored-by: Boris Vasilenko <[email protected]>
  • Loading branch information
bvasilenko and Boris Vasilenko authored Oct 14, 2024
1 parent 009012d commit d3f7b81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export class UpdateActionsCardComponent implements OnInit {

private saveConfigurationIfNecessary(): Observable<void> {
if (this.wasConfigurationSaved) {
return of();
return of(null);
}

return this.matDialog.open(SaveConfigDialogComponent, {
Expand Down

0 comments on commit d3f7b81

Please sign in to comment.