From 359601fd58a8d0eb3f24d7a69e8d40195f0b888a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9ril?= Date: Mon, 15 Jun 2020 14:32:55 +0100 Subject: [PATCH] fix(console): do not truncate error messages in toast notification (#393) --- ui/src/scenes/Editor/Ace/index.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ui/src/scenes/Editor/Ace/index.tsx b/ui/src/scenes/Editor/Ace/index.tsx index 1e8a2033e..b032cf2f5 100644 --- a/ui/src/scenes/Editor/Ace/index.tsx +++ b/ui/src/scenes/Editor/Ace/index.tsx @@ -131,11 +131,7 @@ const Ace = () => { dispatch(actions.query.stopRunning()) dispatch( actions.query.addNotification({ - line1: ( - - {error.error} - - ), + line1: {error.error}, title: ( {request.query} -- GitLab