Update community IDs and source locations in graph.json and manifest.json
- Adjusted source location for mockPricing() in AppointmentBookingModal.test.tsx from L144 to L149. - Updated community IDs for various migration entries and commands in graph.json to reflect new community associations. - Modified timestamps and AST hashes for AppointmentBookingModal.test.tsx and AppointmentsPage.tsx in manifest.json.
This commit is contained in:
@@ -118,8 +118,8 @@ export function NewAppointmentModal({
|
||||
const [lookup, setLookup] = useState<PatientLookup | null>(null);
|
||||
const [patientName, setPatientName] = useState('');
|
||||
const [nationalCode, setNationalCode] = useState('');
|
||||
// معیار جستجوی بیمار: موبایل یا کد ملی.
|
||||
const [searchBy, setSearchBy] = useState<'mobile' | 'national'>('mobile');
|
||||
// معیار جستجوی بیمار: کد ملی (پیشفرض) یا موبایل.
|
||||
const [searchBy, setSearchBy] = useState<'mobile' | 'national'>('national');
|
||||
const [pick, setPick] = useState<{ serviceUuids: string[]; slot: { start: number; end: number } | null }>({ serviceUuids: [], slot: null });
|
||||
|
||||
const role = useAuthStore(s => s.primaryRole);
|
||||
@@ -292,7 +292,7 @@ export function NewAppointmentModal({
|
||||
<label>جستجوی بیمار <span className="req">*</span></label>
|
||||
{/* انتخاب معیار جستجو: موبایل یا کد ملی */}
|
||||
<div style={{ display: 'flex', gap: 6, marginBottom: 8 }}>
|
||||
{(['mobile', 'national'] as const).map(mode => (
|
||||
{(['national', 'mobile'] as const).map(mode => (
|
||||
<button
|
||||
key={mode}
|
||||
type="button"
|
||||
|
||||
Reference in New Issue
Block a user