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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Include full query options when generating download/share/preview links, [PR-160](https://github.com/reductstore/web-console/pull/160)
- Fix the inconsistency in the time range selection with an empty end, [PR-162](https://github.com/reductstore/web-console/pull/162)
- Fix time range dropdown preset selection not exiting Custom mode, [PR-165](https://github.com/reductstore/web-console/pull/165)

## 1.12.1 - 2025-11-17

Expand Down
2 changes: 1 addition & 1 deletion src/Components/Entry/TimeRangeDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default function TimeRangeDropdown({
label: string;
value: [Dayjs, Dayjs];
}[],
[],
[menuOpen, pickerOpen],
);

const applyRange = (from: Dayjs, to: Dayjs) => {
Expand Down