1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-16 06:42:26 +03:00

Remove semicolon in style

This commit is contained in:
Jorik Schellekens
2020-06-18 14:53:12 +01:00
parent 05d0309081
commit 74174041bb

View File

@@ -86,7 +86,7 @@ export default class Slider extends React.Component<IProps> {
const offset = this.offset(this.props.values, this.props.value);
selection = <div className="mx_Slider_selection">
<div className="mx_Slider_selectionDot" style={{left: "calc(-0.55em + " + offset + "%)"}} />
<hr style={{width: offset + "%;"}} />
<hr style={{width: offset + "%"}} />
</div>;
}