Mention nested labels in comments

pull/21833/head
David Baker 2021-07-16 22:35:53 +01:00
parent f9b45677d6
commit 45fb0e927f
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ import { replaceableComponent } from "../../../utils/replaceableComponent";
interface IProps extends React.InputHTMLAttributes<HTMLInputElement> { interface IProps extends React.InputHTMLAttributes<HTMLInputElement> {
outlined?: boolean; outlined?: boolean;
// If true (default), the children will be contained within a <label> element // If true (default), the children will be contained within a <label> element
// If false, they'll be in a div. Putting interactive components like Fields in labels can // If false, they'll be in a div. Putting interactive components that have labels
// cause strange bugs like https://github.com/vector-im/element-web/issues/18031 // themselves in labels can cause strange bugs like https://github.com/vector-im/element-web/issues/18031
childrenInLabel?: boolean; childrenInLabel?: boolean;
} }