Skip to content

Commit 8c349ed

Browse files
authored
remove redundant error toast (#515)
* remove redundant error toast Signed-off-by: Yulong Ruan <[email protected]> * tweaks button text Signed-off-by: Yulong Ruan <[email protected]> * update CHANGELOG Signed-off-by: Yulong Ruan <[email protected]> --------- Signed-off-by: Yulong Ruan <[email protected]>
1 parent bceb8ab commit 8c349ed

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
88

99
### Enhancements
1010

11+
- remove redundant error toast([#515](https://github.com/opensearch-project/dashboards-assistant/pull/515))
1112
- Add auto suggested aggregation for text2Viz ([#514](https://github.com/opensearch-project/dashboards-assistant/pull/514))
1213

14+
1315
### Bug Fixes
1416

1517
### Infrastructure

public/components/incontext_insight/generate_popover_body.test.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,10 @@ describe('GeneratePopoverBody', () => {
144144
);
145145

146146
// insight button is visible
147-
const insightButton = screen.getAllByText('View insight')[0];
147+
const insightButton = screen.getAllByText('View insights')[0];
148148
expect(insightButton).toBeInTheDocument();
149149

150-
// 2. Click insight button to view insight
150+
// 2. Click insight button to view insights
151151
fireEvent.click(insightButton);
152152
// title is back button + 'Insight With RAG'
153153
let backButton = getByLabelText('back-to-summary');
@@ -224,7 +224,7 @@ describe('GeneratePopoverBody', () => {
224224
);
225225

226226
// insight button is not visible
227-
expect(screen.queryAllByLabelText('View insight')).toHaveLength(0);
227+
expect(screen.queryAllByLabelText('View insights')).toHaveLength(0);
228228
// Only call http post 1 time.
229229
expect(mockPost).toHaveBeenCalledTimes(1);
230230
});
@@ -286,7 +286,7 @@ describe('GeneratePopoverBody', () => {
286286
// Show summary content although insight generation failed
287287
expect(getByText('Generated summary content')).toBeInTheDocument();
288288
// insight button is not visible for this alert
289-
expect(screen.queryAllByLabelText('View insight')).toHaveLength(0);
289+
expect(screen.queryAllByLabelText('View insights')).toHaveLength(0);
290290
});
291291

292292
it('should not display discover link if monitor type is not query_level_monitor or bucket_level_monitor', async () => {

public/components/incontext_insight/generate_popover_body.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ export const GeneratePopoverBody: React.FC<{
345345
defaultMessage: 'Back to summary',
346346
})
347347
: i18n.translate('assistantDashboards.incontextInsight.viewInsight', {
348-
defaultMessage: 'View insight',
348+
defaultMessage: 'View insights',
349349
})}
350350
</TraceButton>
351351
)}

public/components/visualization/text2viz.tsx

+1-6
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,6 @@ export const Text2Viz = () => {
148148
if (result.error) {
149149
const msg = `Unable to generate a visualization. ${result.error.message}`;
150150
setErrorMessage(msg);
151-
notifications.toasts.addError(new Error(msg), {
152-
title: i18n.translate('dashboardAssistant.feature.text2viz.error', {
153-
defaultMessage: 'Error while executing text to visualization',
154-
}),
155-
});
156151
} else {
157152
setEditorInput(JSON.stringify(result.vega, undefined, 4));
158153

@@ -171,7 +166,7 @@ export const Text2Viz = () => {
171166
return () => {
172167
subscription?.unsubscribe();
173168
};
174-
}, [http, notifications, usageCollection]);
169+
}, [usageCollection]);
175170

176171
/**
177172
* Loads the saved object from id when editing an existing visualization

0 commit comments

Comments
 (0)