Skip to content

Commit

Permalink
fix(project): disable error handler in metadata request (DSP-1395) (#404
Browse files Browse the repository at this point in the history
)
  • Loading branch information
kilchenmann committed Mar 3, 2021
1 parent 85e6b95 commit 86ebfcf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/project/board/board.component.ts
Expand Up @@ -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);
}
);

Expand Down

0 comments on commit 86ebfcf

Please sign in to comment.