We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<What / Where / Why> ログイン画面、初回レンダリング時点でInput要素がType=Passwordになっていないため1Passwordのオートコンプリートが利用できなくなっている。目のアイコンを選択すると要素がType=Passwordになるものの、オートコンプリートは利用できない。
下記環境で確認:
下記では現状でも利用可能:
これは1Passwordが初回レンダリング時点のみInput要素の属性を見ているため発生している。 (DOMによる変更を検知しない) https://developer.1password.com/docs/web/compatible-website-design/#improve-reliability
下記 showSecret をデフォルト false にすると画像のようにオートコンプリートが効くようになる。 https://github.com/totegamma/concurrent-world/blob/develop/src/components/Importer/ImportMasterkey.tsx#L24
showSecret
false
これは1Passwordのせいとも言えますが、デフォルト表示状態になにか意図があるのか、なければ false にしてもいいんじゃないかと思っています。
The text was updated successfully, but these errors were encountered:
+1です1password等が使えるようにしたい。
1つ問題なのが、type=passwordだとキーボードから日本語が入力できないんですよね。 なので、ベストな仕様としては
といったところかなと思います!
Sorry, something went wrong.
1passwordの場合現在進行形でtype=passwordになっている要素にしかinsertしてくれず、大変こまった
No branches or pull requests
Problem / 問題点
<What / Where / Why>
ログイン画面、初回レンダリング時点でInput要素がType=Passwordになっていないため1Passwordのオートコンプリートが利用できなくなっている。目のアイコンを選択すると要素がType=Passwordになるものの、オートコンプリートは利用できない。
下記環境で確認:
下記では現状でも利用可能:
これは1Passwordが初回レンダリング時点のみInput要素の属性を見ているため発生している。
(DOMによる変更を検知しない)
https://developer.1password.com/docs/web/compatible-website-design/#improve-reliability
Solution (Optional)
下記
showSecret
をデフォルトfalse
にすると画像のようにオートコンプリートが効くようになる。https://github.com/totegamma/concurrent-world/blob/develop/src/components/Importer/ImportMasterkey.tsx#L24
これは1Passwordのせいとも言えますが、デフォルト表示状態になにか意図があるのか、なければ
false
にしてもいいんじゃないかと思っています。The text was updated successfully, but these errors were encountered: