🎉
MUIのPopoverなど表示時、フォーカスを移動させたくない
以下のPropsを追加する
disableAutoFocus
disableEnforceFocus
disableRestoreFocus
テキストエリアに入力中、バリデーションでエラーメッセージをPopoverで表示するときなど有効
<Popover
id="simple-popover"
open={open}
onClose={handleClose}
anchorEl={anchorEl}
anchorOrigin={{
vertical: "bottom",
horizontal: "center"
}}
transformOrigin={{
vertical: "top",
horizontal: "center"
}}
disableAutoFocus
disableEnforceFocus
disableRestoreFocus
>
詳細
Discussion