diff --git a/packages/ui/src/components/editor/input/Progress/index.tsx b/packages/ui/src/components/editor/input/Progress/index.tsx index c5040625d3..8145279f60 100644 --- a/packages/ui/src/components/editor/input/Progress/index.tsx +++ b/packages/ui/src/components/editor/input/Progress/index.tsx @@ -37,7 +37,7 @@ export default function ProgressBar({ value, paused, totalTime, ...rest }: Progr return (
{paused ? : } - +
{paused ? 'Paused' diff --git a/packages/ui/src/components/editor/properties/animation/index.tsx b/packages/ui/src/components/editor/properties/animation/index.tsx index 6b08b88aa4..66856743e8 100644 --- a/packages/ui/src/components/editor/properties/animation/index.tsx +++ b/packages/ui/src/components/editor/properties/animation/index.tsx @@ -45,7 +45,6 @@ import { SelectOptionsType } from '../../../../primitives/tailwind/Select' import InputGroup from '../../input/Group' import ModelInput from '../../input/Model' import NumericInput from '../../input/Numeric' -import ProgressBar from '../../input/Progress' import SelectInput from '../../input/Select' import NodeEditor from '../nodeEditor' @@ -84,7 +83,7 @@ export const LoopAnimationNodeEditor: EditorComponentType = (props) => { description={t('editor:properties.loopAnimation.description')} icon={} > - + {/**/} { step={1} value={media.volume.value} onChange={updateProperty(MediaComponent, 'volume')} - onRelease={() => commitProperty(MediaComponent, 'volume')} + onRelease={commitProperty(MediaComponent, 'volume')} /> @@ -161,7 +161,7 @@ export const MediaNodeEditor: EditorComponentType = (props) => {