File tree 1 file changed +8
-4
lines changed
src/modules/Booking/pages/BookingGridPage
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,9 @@ export const BookingGridPage: FC = () => {
78
78
< table className = "table-fixed w-full" >
79
79
< thead className = "relative" >
80
80
< tr >
81
+ < th className = "w-1/5 bg-[#F6F8FF] text-left p-2 text-[#585858]" >
82
+ Номера
83
+ </ th >
81
84
{ daysForBookingGrid . map ( ( { day, isWeekend } ) => (
82
85
< th
83
86
key = { day . format ( "DD-MM-YYYY" ) }
@@ -110,8 +113,9 @@ export const BookingGridPage: FC = () => {
110
113
< tr key = { room . roomId } >
111
114
< td className = "w-1/5 border p-2 text-left bg-[#F6F8FF]" >
112
115
< div className = "flex" >
113
- < div className = "font-bold" > { room . number } </ div >
116
+ < div className = "font-bold" > { room . number } </ div >
114
117
< div className = "text-sm text-gray-500" >
118
+ { " " }
115
119
{ room . category }
116
120
</ div >
117
121
</ div >
@@ -154,11 +158,11 @@ export const BookingGridPage: FC = () => {
154
158
BookingDtoStatus . STATUS_INITIAL
155
159
]
156
160
const clientName = getFullName (
157
- bookingInfo . booking ?. pets ?. [ 0 ] . ownerShortDto
161
+ bookingInfo . booking ?. pets ?. [ 0 ] ? .ownerShortDto
158
162
?. firstName || "" ,
159
- bookingInfo . booking ?. pets ?. [ 0 ] . ownerShortDto
163
+ bookingInfo . booking ?. pets ?. [ 0 ] ? .ownerShortDto
160
164
?. lastName ,
161
- bookingInfo . booking ?. pets ?. [ 0 ] . ownerShortDto
165
+ bookingInfo . booking ?. pets ?. [ 0 ] ? .ownerShortDto
162
166
?. middleName
163
167
)
164
168
if (
You can’t perform that action at this time.
0 commit comments