Skip to content

Commit

Permalink
feat: iOS 숫자 키패드 지원을 위한 입력 필드 속성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoonkyoungme committed Sep 5, 2024
1 parent 071beca commit 4df0b5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/pages/AttendeeLoginPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ export default function AttendeeLoginPage() {
<Input
type="number"
id="비밀번호"
inputMode="numeric"
pattern="[0-9]*"
placeholder="비밀번호를 입력하세요."
value={attendeePassword}
onChange={handleAttendeePasswordChange}
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/pages/CreateMeetingPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ export default function CreateMeetingPage() {
<Input
type="number"
id="비밀번호"
inputMode="numeric"
pattern="[0-9]*"
value={hostPassword}
onChange={handleHostPasswordChange}
/>
Expand Down

0 comments on commit 4df0b5e

Please sign in to comment.