Skip to content

Commit e8d7cf8

Browse files
authored
Merge pull request #477 from ant-media/fix-credit-card-auto-fill
Fix credit card auto fill appears in name field
2 parents 8af8771 + 9f94347 commit e8d7cf8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

react/src/pages/WaitingRoom.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ function WaitingRoom(props) {
496496
placeholder={t("Your name")}
497497
readOnly={true}
498498
id="participant_name"
499+
autocomplete="given-name"
499500
/>
500501
: <TextField
501502
autoFocus
@@ -507,6 +508,7 @@ function WaitingRoom(props) {
507508
onChange={(e) => props?.setStreamName(e.target.value)}
508509
placeholder={t("Your name")}
509510
id="participant_name"
511+
autocomplete="given-name"
510512
/>}
511513
</Grid>
512514
<Grid container justifyContent={"center"}>

0 commit comments

Comments
 (0)