Skip to content
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [2.5.2] - 2025-09-25

- [#290](https://github.com/os2display/display-admin-client/pull/290)
- Added temporary fix that reloads the page after a screen has been saved, to ensure fresh data is fetched.

## [2.5.1] - 2025-06-23

- [#287](https://github.com/os2display/display-admin-client/pull/287)
Expand Down
3 changes: 3 additions & 0 deletions src/components/screen/screen-manager.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,9 @@ function ScreenManager({
} else {
navigate("/screen/list");
}

// TODO: Remove this. Temporary fix until redux caching issues are fixed.
window.location.reload();
}
}, [isSaveSuccessPut, isSaveSuccessPost]);

Expand Down