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 baa8056 + 9268115 commit f3449e3
Showing 1 changed file with 12 additions and 2 deletions.
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 f3449e3

Please sign in to comment.