From f8ebcaa0d952a8c35598ac7549d4017baa537362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Jamr=C3=B3z?= Date: Thu, 30 Sep 2021 09:22:57 +0200 Subject: [PATCH] Explore: Fix displaying rich history saving error message (#39766) * Explore: Fix displaying rich history saving error message * Keep generic error message * remove testing snippet --- public/app/core/utils/richHistory.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/app/core/utils/richHistory.ts b/public/app/core/utils/richHistory.ts index 67e1d85c477..fd3a60a33b3 100644 --- a/public/app/core/utils/richHistory.ts +++ b/public/app/core/utils/richHistory.ts @@ -78,7 +78,7 @@ export function addToRichHistory( store.setObject(RICH_HISTORY_KEY, updatedHistory); return updatedHistory; } catch (error) { - dispatch(notifyApp(createErrorNotification(error))); + dispatch(notifyApp(createErrorNotification('Saving rich history failed', error.message))); return richHistory; } } @@ -111,7 +111,7 @@ export function updateStarredInRichHistory(richHistory: RichHistoryQuery[], ts: store.setObject(RICH_HISTORY_KEY, updatedHistory); return updatedHistory; } catch (error) { - dispatch(notifyApp(createErrorNotification(error))); + dispatch(notifyApp(createErrorNotification('Saving rich history failed', error.message))); return richHistory; } } @@ -133,7 +133,7 @@ export function updateCommentInRichHistory( store.setObject(RICH_HISTORY_KEY, updatedHistory); return updatedHistory; } catch (error) { - dispatch(notifyApp(createErrorNotification(error))); + dispatch(notifyApp(createErrorNotification('Saving rich history failed', error.message))); return richHistory; } } @@ -144,7 +144,7 @@ export function deleteQueryInRichHistory(richHistory: RichHistoryQuery[], ts: nu store.setObject(RICH_HISTORY_KEY, updatedHistory); return updatedHistory; } catch (error) { - dispatch(notifyApp(createErrorNotification(error))); + dispatch(notifyApp(createErrorNotification('Saving rich history failed', error.message))); return richHistory; } }