diff --git a/CHANGELOG.md b/CHANGELOG.md index 0db049aa8f..aa769df6a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [UNRELEASED - DD.MM.YYYY] +### Added +### Changed +- Restricted datefield on investigation creation to be only clickable and not editable ## [10.0.0 - 12.12.2024] ### Added diff --git a/frontend/src/app/modules/shared/components/dateTime/dateTime.component.html b/frontend/src/app/modules/shared/components/dateTime/dateTime.component.html index 6448630310..36958ab7da 100644 --- a/frontend/src/app/modules/shared/components/dateTime/dateTime.component.html +++ b/frontend/src/app/modules/shared/components/dateTime/dateTime.component.html @@ -20,7 +20,7 @@ -->
- + {{ label }} { constructor(@Inject(Injector) injector: Injector, staticIdService: StaticIdService) { super(injector, staticIdService); } + + openDatePicker(element: any): void{ + element.showPicker(); + } }