mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Checkbox: Fix component sample typo (#28518)
This commit is contained in:
committed by
GitHub
parent
1646de4540
commit
639460a789
@@ -19,8 +19,8 @@ export const Controlled = () => {
|
|||||||
<Checkbox
|
<Checkbox
|
||||||
value={checked}
|
value={checked}
|
||||||
onChange={onChange}
|
onChange={onChange}
|
||||||
label="Skip SLL cert validation"
|
label="Skip TLS cert validation"
|
||||||
description="Set to true if you want to skip sll cert validation"
|
description="Set to true if you want to skip TLS cert validation"
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@@ -29,8 +29,8 @@ export const uncontrolled = () => {
|
|||||||
return (
|
return (
|
||||||
<Checkbox
|
<Checkbox
|
||||||
defaultChecked={true}
|
defaultChecked={true}
|
||||||
label="Skip SLL cert validation"
|
label="Skip TLS cert validation"
|
||||||
description="Set to true if you want to skip sll cert validation"
|
description="Set to true if you want to skip TLS cert validation"
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user