[bugfix] Config Page: VR Tab. Fix the error "Failed prop type: Invalid prop valueLabelFormat supplied to ForwardRef(Slider2), expected one of type [function, string]."
It should've put strings but I put number (init value 0)
This commit is contained in:
@@ -32,7 +32,7 @@ export const Slider = (props) => {
|
||||
marks={props.marks}
|
||||
track={props.track}
|
||||
orientation={props.orientation}
|
||||
valueLabelFormat={props.valueLabelFormat ? props.valueLabelFormat : null}
|
||||
valueLabelFormat={`${props.valueLabelFormat ? props.valueLabelFormat : props.variable}`}
|
||||
sx={{
|
||||
color: baseColor,
|
||||
"& .MuiSlider-thumb": {
|
||||
|
||||
Reference in New Issue
Block a user