Skip to content

Commit 5875745

Browse files
committed
v1.19.12
1 parent a6d25cd commit 5875745

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/Abstract/SelectionBase.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ interface IProps extends IPropsSelectionBase {
4040
export default class FieldSelectionBase extends FieldCoreBase<IProps> {
4141
get labelClassName(): string {
4242
const { helperText, disableLabelMargin, classes, FormControlLabelProps } = this.props;
43-
return (helperText && !disableLabelMargin ? classes.labelAlign : '') +
43+
return (helperText && !disableLabelMargin ? classes.labelAlign : '') + ' ' +
4444
(FormControlLabelProps && FormControlLabelProps.labelPlacement === 'start' ? classes.labelRight : '');
4545
}
4646

4747
get helperTextClassName(): string {
4848
const { FormControlLabelProps, classes } = this.props;
49-
return classes.helperText +
49+
return classes.helperText + ' ' +
5050
(FormControlLabelProps && FormControlLabelProps.labelPlacement === 'start' ? classes.labelRight : '');
5151
}
5252

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"validation",
1111
"material"
1212
],
13-
"version": "1.19.11",
13+
"version": "1.19.12",
1414
"main": "./dist/index.js",
1515
"types": "./dist/index.d.ts",
1616
"license": "MIT",

0 commit comments

Comments
 (0)