-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44888 from tienifr/fix/32683
fix: safari password autofill does not disappear
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from 'react'; | ||
import {isSafari} from '@libs/Browser'; | ||
import type ChildrenProps from '@src/types/utils/ChildrenProps'; | ||
|
||
type SafariFormWrapperProps = ChildrenProps; | ||
|
||
/** | ||
* If we used any <input> without <form> wrapper, Safari 11+ would show the auto-fill suggestion popup. | ||
*/ | ||
function SafariFormWrapper({children}: SafariFormWrapperProps) { | ||
if (isSafari()) { | ||
return <form>{children}</form>; | ||
} | ||
|
||
return children; | ||
} | ||
|
||
export default SafariFormWrapper; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters