[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}
|
marks={props.marks}
|
||||||
track={props.track}
|
track={props.track}
|
||||||
orientation={props.orientation}
|
orientation={props.orientation}
|
||||||
valueLabelFormat={props.valueLabelFormat ? props.valueLabelFormat : null}
|
valueLabelFormat={`${props.valueLabelFormat ? props.valueLabelFormat : props.variable}`}
|
||||||
sx={{
|
sx={{
|
||||||
color: baseColor,
|
color: baseColor,
|
||||||
"& .MuiSlider-thumb": {
|
"& .MuiSlider-thumb": {
|
||||||
|
|||||||
Reference in New Issue
Block a user