Skip to content

Commit

Permalink
NAS-130734: Fix empty observer (#10871)
Browse files Browse the repository at this point in the history
(cherry picked from commit e04c820)

Co-authored-by: Boris Vasilenko <[email protected]>
  • Loading branch information
bugclerk and Boris Vasilenko authored Oct 15, 2024
1 parent c5c0ac1 commit 90f7c3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,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 90f7c3b

Please sign in to comment.