Skip to content

Commit

Permalink
feat: 지출 내역 아이템에 수정 여부를 표시하기
Browse files Browse the repository at this point in the history
  • Loading branch information
pakxe committed Aug 21, 2024
1 parent 8c78197 commit 5f2ea82
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ const PutAndDeleteBillActionModal = ({
onSubmit: putMemberReportListInAction,
getIsSamePriceStateAndServerState,
getOnlyOneNotAdjustedRemainMemberIndex,
isExistAdjustedPrice,
} = useMemberReportListInAction(billAction.actionId, Number(inputPair.price));
const {
inputList,
Expand Down Expand Up @@ -92,6 +93,7 @@ const PutAndDeleteBillActionModal = ({
type="number"
value={inputPair.price}
onChange={(event: React.ChangeEvent<HTMLInputElement>) => handleInputChange('price', event)}
isFixed={isExistAdjustedPrice()}
/>
<Text size="caption"></Text>
</Flex>
Expand All @@ -109,7 +111,7 @@ const PutAndDeleteBillActionModal = ({
value={name}
placeholder="참여자 명"
textSize="smallBodyBold"
readOnly
disabled
></EditableItem.Input>
<Flex gap="0.25rem" alignItems="center">
<EditableItem.Input
Expand Down

0 comments on commit 5f2ea82

Please sign in to comment.