Skip to content

Commit

Permalink
[PDW-54] fix: 직급 추가로 인한 요청자 표시 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chayoosang committed Oct 11, 2023
1 parent 6f3a398 commit 7d5bdfe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ function OfficeBookingManage(props) {
key={index}
id={bookingOffice.id}
name={bookingOffice.name}
position={bookingOffice.position}
detailInfo={bookingOffice.detailInfo}
startDateTime={bookingOffice.startDateTime}
endDateTime={bookingOffice.endDateTime}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function OfficeBookingManageCell(props) {
<td width="15%">{props.name}</td>
<td width="10%">{props.detailInfo}</td>
<td width="20%">{props.startDateTime} ~ <br/>{props.endDateTime}</td>
<td width="10%">{props.requester}</td>
<td width="10%">{props.requester} ({props.position})</td>
<td width="15%">
<StatusContainer isCheck={'true'} background={status.background}>
<StatusCircle color={status.color} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ function ResourceBookingManage(props) {
<ResourceBookingManageCell
key={index}
id={bookingResource.id}
name={bookingResource.name}
name={bookingResource.name}
position={bookingResource.position}
category={bookingResource.category}
startDateTime={bookingResource.startDateTime}
endDateTime={bookingResource.endDateTime}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function ResourceBookingManageCell(props) {
<td width="15%">{props.name}</td>
<td width="10%">{props.category}</td>
<td width="20%">{props.startDateTime} ~ {props.endDateTime}</td>
<td width="10%">{props.requester}</td>
<td width="10%">{props.requester} ({props.position})</td>
<td width="15%">
<StatusContainer isCheck={'true'} background={status.background}>
<StatusCircle color={status.color} />
Expand Down

0 comments on commit 7d5bdfe

Please sign in to comment.