Skip to content

Commit

Permalink
Merge pull request #174 from SystemConsultantGroup/develop
Browse files Browse the repository at this point in the history
프로덕션 수정사항 반영을 위해 머지합니다.
  • Loading branch information
hynseok authored Jul 2, 2024
2 parents 87a302d + d39c395 commit 281843e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env.production
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEXT_PUBLIC_API_ENDPOINT = https://qa.ice.scg.skku.ac.kr/v1/
14 changes: 12 additions & 2 deletions src/components/pages/achievement/AchievementForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,19 @@ function AchievementForm({ form, handleSubmit, isEdit, isAdmin }: Props) {
<RowGroup>
<BasicRow field="ISSN">
<Group justify="space-between">
<InputBase w={100} component={IMaskInput} mask="0000" {...getInputProps("ISSN1")} />
<InputBase
w={100}
component={IMaskInput}
mask={/^[0-9a-zA-Z]{1,4}$/}
{...getInputProps("ISSN1")}
/>
{" - "}
<InputBase w={100} component={IMaskInput} mask="0000" {...getInputProps("ISSN2")} />
<InputBase
w={100}
component={IMaskInput}
mask={/^[0-9a-zA-Z]{1,4}$/}
{...getInputProps("ISSN2")}
/>
</Group>
</BasicRow>
</RowGroup>
Expand Down

0 comments on commit 281843e

Please sign in to comment.