We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ebb44da + 0f0f638 commit dad7729Copy full SHA for dad7729
2 files changed
CHANGELOG.md
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
5
## [Unreleased]
6
7
+## [2.5.2] - 2025-09-25
8
+
9
+- [#290](https://github.com/os2display/display-admin-client/pull/290)
10
+ - Added temporary fix that reloads the page after a screen has been saved, to ensure fresh data is fetched.
11
12
## [2.5.1] - 2025-06-23
13
14
- [#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