fix: slider duration is fixed (#2537)

This commit is contained in:
Palash Gupta 2023-04-03 15:26:47 +05:30 committed by GitHub
parent 67ba46abde
commit 5ff9172103
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -178,7 +178,7 @@ function Duration(): JSX.Element {
if (value === undefined) { if (value === undefined) {
return <div />; return <div />;
} }
return <div>{`${getMs(value?.toString())}ms`}</div>; return <div>{`${value?.toString()}ms`}</div>;
}, []); }, []);
return ( return (