We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fcc73a commit 23eb5a3Copy full SHA for 23eb5a3
src/packages/frontend/account/settings/text-setting.tsx
@@ -19,6 +19,10 @@ interface Props {
19
disabled?: boolean;
20
}
21
22
+
23
+// Note -- we disable all password manager autocomplete, since this is a component
24
+// that's used internally in the app for configuration. See https://github.com/sagemathinc/cocalc/issues/6868
25
26
export function TextSetting(props: Props): JSX.Element {
27
return (
28
<LabeledRow
@@ -33,6 +37,9 @@ export function TextSetting(props: Props): JSX.Element {
33
37
onPressEnter={props.onPressEnter}
34
38
maxLength={props.maxLength}
35
39
disabled={props.disabled}
40
+ autoComplete={"off"}
41
+ data-lpignore="true"
42
+ data-1p-ignore
36
43
/>
44
</LabeledRow>
45
);
0 commit comments