diff --git a/VDS/Components/DatePicker/DatePicker.swift b/VDS/Components/DatePicker/DatePicker.swift index e169cccf..7a158ff6 100644 --- a/VDS/Components/DatePicker/DatePicker.swift +++ b/VDS/Components/DatePicker/DatePicker.swift @@ -186,8 +186,11 @@ open class DatePicker: EntryFieldBase, DatePickerViewControllerDelegate, UIPopov internal func didSelectDate(_ controller: DatePickerViewController, date: Date) { selectedDate = date - controller.dismiss(animated: true) - sendActions(for: .valueChanged) + controller.dismiss(animated: true) { [weak self] in + guard let self else { return } + self.sendActions(for: .valueChanged) + UIAccessibility.post(notification: .layoutChanged, argument: self.fieldStackView) + } } public func adaptivePresentationStyle(for controller: UIPresentationController) -> UIModalPresentationStyle {