Fix variable name from step to clip in input value assignment

This commit is contained in:
2026-04-15 00:24:47 +02:00
parent a024c7f798
commit d8d33b37fe

View File

@@ -276,7 +276,7 @@ export function ProjectSequencesPanel({
<input
className="text-input"
type="text"
value={step.stepClass === "held" ? "Held" : "Impulse"}
value={clip.stepClass === "held" ? "Held" : "Impulse"}
readOnly
/>
</label>