From 86ebfcf6a6d62e7ddc0e45899726d24f0b1a0c4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Kilchenmann?= Date: Wed, 3 Mar 2021 14:29:56 +0100 Subject: [PATCH] fix(project): disable error handler in metadata request (DSP-1395) (#404) --- src/app/project/board/board.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/project/board/board.component.ts b/src/app/project/board/board.component.ts index 6f4c16cec6..8c8615dc44 100644 --- a/src/app/project/board/board.component.ts +++ b/src/app/project/board/board.component.ts @@ -164,7 +164,8 @@ export class BoardComponent implements OnInit { this.getProjectForDataset(); }, (error: ApiResponseError) => { - this._errorHandler.showMessage(error); + // --> TODO: enable the error handler as soon as DSP-1391 is solved + // this._errorHandler.showMessage(error); } );