Skip to content

Commit

Permalink
prettirer
Browse files Browse the repository at this point in the history
  • Loading branch information
MariaBonde committed Dec 10, 2024
1 parent f94108a commit ab52f5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/components/Staffing/DetailedBookingRows.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ export function DetailedBookingRows(props: {
async function getColorIcon() {
const bookingType = detailedBooking.bookingDetails.type;
const endDateString = detailedBooking.bookingDetails.endDateAgreement;
const isInternal = detailedBooking.bookingDetails.customerName == INTERNAL_CUSTOMER_NAME;
const isInternal =
detailedBooking.bookingDetails.customerName == INTERNAL_CUSTOMER_NAME;
if (endDateString && endDateString !== null) {
const endDate = new Date(endDateString).getTime();

Expand Down

0 comments on commit ab52f5e

Please sign in to comment.