Skip to content

Commit

Permalink
Update refresh function in the Update Request (#547)
Browse files Browse the repository at this point in the history
* Updated refresh function in the Update Request

* Update CHANGELOG.md
  • Loading branch information
mikhail-vl authored Nov 13, 2024
1 parent 7b9df92 commit 9c1ff1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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

0 comments on commit 9c1ff1b

Please sign in to comment.