Skip to content

Commit

Permalink
BUGFIX: Add missin semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnitto authored Oct 22, 2023
1 parent 436f83b commit dc0bfad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/neos-ui-editors/src/Editors/Range/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class RangeEditor extends PureComponent {
const options = {...this.constructor.defaultProps.options, ...this.props.options};
const {value, highlight} = this.props;
const valueAsString = value === 0 ? '0' : (value || '');
const styleWidth = Math.max(options.min.toString().length, options.max.toString().length) + 'ch'
const styleWidth = Math.max(options.min.toString().length, options.max.toString().length) + 'ch';

return (
<div
Expand Down

0 comments on commit dc0bfad

Please sign in to comment.