1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-07-02 20:30:27 +00:00

Merge branch 'clickable-checkbox-helptext' into 'dev'

Make checkBox help text clickabe.

See merge request turris/reforis/foris-js!45
This commit is contained in:
Bogdan Bodnar 2019-11-19 12:43:15 +00:00
commit 48d5cf0119
2 changed files with 14 additions and 12 deletions

View File

@ -42,8 +42,10 @@ export function CheckBox({
{...props}
/>
<label className="custom-control-label" htmlFor={uid}>{label}</label>
{helpText && <small className="form-text text-muted">{helpText}</small>}
<label className="custom-control-label" htmlFor={uid}>
{label}
{helpText && <small className="form-text text-muted">{helpText}</small>}
</label>
</div>
</div>
);

View File

@ -18,12 +18,12 @@ exports[`<Checkbox/> Render checkbox 1`] = `
for="1"
>
Test label
<small
class="form-text text-muted"
>
Some help text
</small>
</label>
<small
class="form-text text-muted"
>
Some help text
</small>
</div>
</div>
`;
@ -45,12 +45,12 @@ exports[`<Checkbox/> Render uncheked checkbox 1`] = `
for="1"
>
Test label
<small
class="form-text text-muted"
>
Some help text
</small>
</label>
<small
class="form-text text-muted"
>
Some help text
</small>
</div>
</div>
`;