We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 35a9a3c + f9522e8 commit e6a06b7Copy full SHA for e6a06b7
2 files changed
CHANGELOG.md
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
4
5
## [Unreleased]
6
7
+- [#290](https://github.com/os2display/display-admin-client/pull/290)
8
+ - Added temporary fix that reloads the page after a screen has been saved, to ensure fresh data is fetched.
9
+
10
## [2.5.1] - 2025-06-23
11
12
- [#287](https://github.com/os2display/display-admin-client/pull/287)
src/components/screen/screen-manager.jsx
@@ -285,6 +285,9 @@ function ScreenManager({
285
} else {
286
navigate("/screen/list");
287
}
288
289
+ // TODO: Remove this. Temporary fix until redux caching issues are fixed.
290
+ window.location.reload();
291
292
}, [isSaveSuccessPut, isSaveSuccessPost]);
293
0 commit comments