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 <Input
placeholder="Поиск по результатам приема" placeholder="Поиск по результатам приема"
value={appointmentFormModalUI.searchPreviousAppointments} value={appointmentFormModalUI.searchPreviousAppointments}
onChange={appointmentFormModalUI.handleSetSearchPatientString} onChange={appointmentFormModalUI.handleSetSearchPreviousAppointments}
style={{marginBottom: 16}} style={{marginBottom: 16}}
allowClear allowClear
/> />

View File

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