我想在 Keycloak 登录页面上使用“记住我”选项,但有效期为 7 天。我从 Keycloak 设置中进行了这些更改。但它不起作用,一段时间后我就会注销。
我错过了什么吗?
Keycloak 设置的屏幕截图:
我的单选按钮无法正常工作,最大的问题是当我单击单选项目时未设置选中的属性。
\n知道为什么它不能正常工作以及如何实现上述几点吗?
\n请参阅下面的代码片段,它在这里不起作用,不知道为什么。
\nclass Root extends React.Component {\n render() {\n return (\n <div>\n Group 1: <RadioButton />\n Group 2: <RadioButtonGroup />\n </div>\n );\n }\n}\n\nimport React, { useState } from "react"\n\ninterface SharedProps {\n /**\n * Specify whether the control is disabled\n */\n disabled?: boolean\n\n /**\n * Specify whether the <RadioButton> is currently checked\n */\n defaultChecked?: boolean\n\n /**\n * Provide where label text should be placed\n */\n labelPosition: "right" | "left"\n\n /**\n * Provide a name for …
Run Code Online (Sandbox Code Playgroud)