[frontend] Better autocapitalize/spellcheck settings on forms (#3077)

This commit is contained in:
tobi 2024-07-08 09:38:27 +02:00 committed by GitHub
commit bbbf6ebe37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 205 additions and 38 deletions

View file

@ -66,9 +66,11 @@ export default function DomainPermissionsOverview() {
}
return (
<>
<h1>Domain {permTypeUpper}s</h1>
{ permType == "block" ? <BlockHelperText/> : <AllowHelperText/> }
<div className={`domain-${permType}`}>
<div className="form-section-docs">
<h1>Domain {permTypeUpper}s</h1>
{ permType == "block" ? <BlockHelperText/> : <AllowHelperText/> }
</div>
<DomainPermsList
data={data}
permType={permType}
@ -77,7 +79,7 @@ export default function DomainPermissionsOverview() {
<Link to={`~${baseUrl}/import-export`}>
Or use the bulk import/export interface
</Link>
</>
</div>
);
}