diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-10-11 17:32:30 +0200 |
---|---|---|
committer | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-10-23 08:01:13 -0700 |
commit | 847b1833f8f86657e9ddc206fab04e29ec5dbdc9 (patch) | |
tree | 1384b20f4716865607837808daba49a9a23b526c /server/sonar-web/src/main/js/components/controls/Checkbox.tsx | |
parent | ddb6f1e13ff2cde359672c1df474c5b6e6f137da (diff) | |
download | sonarqube-847b1833f8f86657e9ddc206fab04e29ec5dbdc9.tar.gz sonarqube-847b1833f8f86657e9ddc206fab04e29ec5dbdc9.zip |
SONAR-9935 Migrate Update center to Marketplace
Diffstat (limited to 'server/sonar-web/src/main/js/components/controls/Checkbox.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/controls/Checkbox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/controls/Checkbox.tsx b/server/sonar-web/src/main/js/components/controls/Checkbox.tsx index 1e5afe85195..f0986772213 100644 --- a/server/sonar-web/src/main/js/components/controls/Checkbox.tsx +++ b/server/sonar-web/src/main/js/components/controls/Checkbox.tsx @@ -22,7 +22,7 @@ import * as classNames from 'classnames'; interface Props { checked: boolean; - children?: React.ReactElement<any>; + children?: React.ReactNode; className?: string; id?: string; onCheck: (checked: boolean, id?: string) => void; |