[NIFI-13756] clear banner error afterClosed() of EditParameterContext dialog (#9329)

This closes #9329
This commit is contained in:
Scott Aslan 2024-10-02 16:02:30 -06:00 committed by GitHub
parent c198dc9d24
commit d93c2f9f0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -170,6 +170,10 @@ export class ParameterContextListingEffects {
})
);
});
dialogReference.afterClosed().subscribe(() => {
this.store.dispatch(ErrorActions.clearBannerErrors());
});
})
),
{ dispatch: false }