fix(AppointmentFormModal): Исправлена функция поиска приема

This commit is contained in:
Андрей Дувакин 2025-06-04 19:43:00 +05:00
parent a416b6cc95
commit a1fa7bdac7
2 changed files with 2 additions and 1 deletions

View File

@ -354,7 +354,7 @@ const AppointmentFormModal = () => {
<Input
placeholder="Поиск по результатам приема"
value={appointmentFormModalUI.searchPreviousAppointments}
onChange={appointmentFormModalUI.handleSetSearchPatientString}
onChange={appointmentFormModalUI.handleSetSearchPreviousAppointments}
style={{marginBottom: 16}}
allowClear
/>

View File

@ -371,6 +371,7 @@ const useAppointmentFormModalUI = (createAppointment, patients, cancelAppointmen
handleSetSearchPatientString,
filteredPatients,
filteredPreviousAppointments,
searchPreviousAppointments,
handleSetSearchPreviousAppointments,
handleOk,
handleCancel,