[agent-pipeline] pipe-20260311104251-xw7c round-2
This commit is contained in:
parent
6be07e5e88
commit
2da5cd9637
|
|
@ -364,7 +364,7 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
placeholder="100"
|
placeholder="100"
|
||||||
className="h-7 text-xs"
|
className="h-7 w-full text-xs"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
|
|
@ -396,20 +396,17 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
|
||||||
}}
|
}}
|
||||||
step={1}
|
step={1}
|
||||||
placeholder="10"
|
placeholder="10"
|
||||||
className="h-7 text-xs"
|
className="h-7 w-full text-xs"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div className="flex-1">
|
||||||
{/* Z-Index */}
|
<Label className="text-[10px] text-muted-foreground">Z-Index</Label>
|
||||||
<div className="flex items-center justify-between py-1.5">
|
|
||||||
<span className="text-xs text-muted-foreground">Z-Index</span>
|
|
||||||
<div className="w-[160px]">
|
|
||||||
<Input
|
<Input
|
||||||
type="number"
|
type="number"
|
||||||
step="1"
|
step="1"
|
||||||
value={currentPosition.z || 1}
|
value={currentPosition.z || 1}
|
||||||
onChange={(e) => handleUpdate("position.z", parseInt(e.target.value) || 1)}
|
onChange={(e) => handleUpdate("position.z", parseInt(e.target.value) || 1)}
|
||||||
className="h-7 text-xs"
|
className="h-7 w-full text-xs"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue