Skip to content

Commit

Permalink
워딩 수정 및 값 못찾아오는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gongdongho12 committed Jul 19, 2020
1 parent d96c0e5 commit da885d0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/LoginModalButton/LoginModalButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const LoginModalButton: FunctionComponent<ILoginModalProps> = (props) => {
)
}
<Modal
title="Login"
title="로그인"
visible={visible}
footer={null}
// onOk={handleOk}
Expand Down
2 changes: 1 addition & 1 deletion src/components/RegisterModalButton/RegisterModalButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const RegisterModalButton: FunctionComponent<ILoginModalProps> = (props) => {
회원가입
</Button>
<Modal
title="Register"
title="회원가입"
visible={visible}
footer={null}
// onOk={handleOk}
Expand Down
6 changes: 3 additions & 3 deletions src/containers/About/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,15 @@ const About: FunctionComponent<IAboutProps> = (props) => {
</FlexCenter>
<FlexCenter style={{ width: '100%', padding: isgroupbuying ? '10px 10px 0px 10px' : '10px', justifyContent: 'flex-start' }}>
<span style={{ fontSize: "14px", fontWeight: "bold", color: assignTagStyle.backgroundColor }}>
{`${Number(data?.goal_price || 0)}원`}
{`${Number(data?.option?.price || 0)}원`}
</span>
<span style={{ fontSize: '14px', marginLeft: '5px' }}>
{data?.lessSellUnit ? `/ ${data?.lessSellUnit}` : ''}
{data?.option?.description ? `/ ${data?.option?.description}` : ''}
</span>
</FlexCenter>
{ isgroupbuying && <FlexCenter style={{ width: '100%', padding: '0px 10px 10px 10px', justifyContent: 'flex-start' }}>
<span style={{ fontSize: "14px", fontWeight: "bold", color: assignTagStyle.backgroundColor }}>
{`현재 달성률 ${formatNumber(data?.achivement || 0)}%`}
{`현재 달성률 ${formatNumber(data?.achievement || 0)}%`}
</span>
<span style={{ fontSize: '14px', marginLeft: '5px' }}>
{`/ 목표금액 ${formatNumber(Number(data?.goal_price || 0))}원`}
Expand Down

0 comments on commit da885d0

Please sign in to comment.