Skip to content

Commit 02e6c22

Browse files
authored
Merge pull request #69 from azawert/bugfix/booking-table-fix
fix: 🐛 fixed unexpected error, fixed view for table
2 parents 89ddd5e + 923c412 commit 02e6c22

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/modules/Booking/pages/BookingGridPage/BookingGridPage.tsx

+8-4
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ export const BookingGridPage: FC = () => {
7878
<table className="table-fixed w-full">
7979
<thead className="relative">
8080
<tr>
81+
<th className="w-1/5 bg-[#F6F8FF] text-left p-2 text-[#585858]">
82+
Номера
83+
</th>
8184
{daysForBookingGrid.map(({ day, isWeekend }) => (
8285
<th
8386
key={day.format("DD-MM-YYYY")}
@@ -110,8 +113,9 @@ export const BookingGridPage: FC = () => {
110113
<tr key={room.roomId}>
111114
<td className="w-1/5 border p-2 text-left bg-[#F6F8FF]">
112115
<div className="flex">
113-
<div className="font-bold">{room.number}</div>
116+
<div className="font-bold">{room.number} </div>
114117
<div className="text-sm text-gray-500">
118+
{" "}
115119
{room.category}
116120
</div>
117121
</div>
@@ -154,11 +158,11 @@ export const BookingGridPage: FC = () => {
154158
BookingDtoStatus.STATUS_INITIAL
155159
]
156160
const clientName = getFullName(
157-
bookingInfo.booking?.pets?.[0].ownerShortDto
161+
bookingInfo.booking?.pets?.[0]?.ownerShortDto
158162
?.firstName || "",
159-
bookingInfo.booking?.pets?.[0].ownerShortDto
163+
bookingInfo.booking?.pets?.[0]?.ownerShortDto
160164
?.lastName,
161-
bookingInfo.booking?.pets?.[0].ownerShortDto
165+
bookingInfo.booking?.pets?.[0]?.ownerShortDto
162166
?.middleName
163167
)
164168
if (

0 commit comments

Comments
 (0)