Bugfix: rename with-legend class to withLegend

old
Javi Velasco 2015-11-28 16:01:38 +01:00
parent 3d9b92164c
commit 2b9c615af6
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import style from './style';
const ListCheckbox = (props) => {
let className = `${style.item} ${style['checkbox-item']}`;
if (props.legend) className += ` ${style['with-legend']}`;
if (props.legend) className += ` ${style.withLegend}`;
if (props.disabled) className += ` ${style.disabled}`;
if (props.className) className += ` ${props.className}`;