Skip to content

Commit

Permalink
mgr/dashboard: Don't show notifications for status code 400
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Wagner <sebastian.wagner@suse.com>
  • Loading branch information
sebastian-philipp committed May 2, 2018
1 parent e1b9685 commit 94210c6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export class ApiInterceptorService implements HttpInterceptor {
case 404:
this.router.navigate(['/404']);
break;
case 400:
case 409:
showNotification = false;
break;
Expand Down

0 comments on commit 94210c6

Please sign in to comment.