diff --git a/changelog.d/20241111_142755_klakhov_fix_show_gt.md b/changelog.d/20241111_142755_klakhov_fix_show_gt.md new file mode 100644 index 00000000000..7a687595a21 --- /dev/null +++ b/changelog.d/20241111_142755_klakhov_fix_show_gt.md @@ -0,0 +1,4 @@ +### Fixed + +- Ground truth annotations can be shown in standard mode + () diff --git a/cvat-ui/src/reducers/settings-reducer.ts b/cvat-ui/src/reducers/settings-reducer.ts index 0c662908d76..2a9e5ca79db 100644 --- a/cvat-ui/src/reducers/settings-reducer.ts +++ b/cvat-ui/src/reducers/settings-reducer.ts @@ -444,8 +444,11 @@ export default (state = defaultState, action: AnyAction): SettingsState => { return { ...state, - imageFilters: filters, + shapes: { + ...state.shapes, + showGroundTruth: false, + }, }; } case AnnotationActionTypes.INTERACT_WITH_CANVAS: {