Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update refresh function in the Update Request #547

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Added HTML, Markdown to supported Code Editor languages (#543)
- Updated options to use datasource ID instead of name (#539)
- Updated E2E tests (#538)
- Updated refresh function in the Update Request (#547)

## 4.8.0 (2024-10-25)

Expand Down
2 changes: 1 addition & 1 deletion src/constants/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ console.log(dataQuery);`;
*/
export const UPDATE_CODE_DEFAULT = `if (context.panel.response) {
context.grafana.notifySuccess(['Update', 'Values updated successfully.']);
context.grafana.locationService.reload();
context.grafana.refresh();
} else {
context.grafana.notifyError(['Update', 'An error occurred updating values.']);
}`;
Expand Down
Loading