reorder credit card form fields to show collection ID before item ID (#2652)
This commit is contained in:
committed by
GitHub
parent
41332c6976
commit
90feb96b0f
@@ -275,6 +275,13 @@ function WorkflowParameterAddPanel({ type, onClose, onSave }: Props) {
|
|||||||
)}
|
)}
|
||||||
{type === "creditCardData" && (
|
{type === "creditCardData" && (
|
||||||
<>
|
<>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<Label className="text-xs text-slate-300">Collection ID</Label>
|
||||||
|
<Input
|
||||||
|
value={bitwardenCollectionId}
|
||||||
|
onChange={(e) => setBitwardenCollectionId(e.target.value)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<div className="space-y-1">
|
<div className="space-y-1">
|
||||||
<Label className="text-xs text-slate-300">Item ID</Label>
|
<Label className="text-xs text-slate-300">Item ID</Label>
|
||||||
<Input
|
<Input
|
||||||
@@ -284,13 +291,6 @@ function WorkflowParameterAddPanel({ type, onClose, onSave }: Props) {
|
|||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="space-y-1">
|
|
||||||
<Label className="text-xs text-slate-300">Collection ID</Label>
|
|
||||||
<Input
|
|
||||||
value={bitwardenCollectionId}
|
|
||||||
onChange={(e) => setBitwardenCollectionId(e.target.value)}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -331,13 +331,6 @@ function WorkflowParameterEditPanel({
|
|||||||
)}
|
)}
|
||||||
{type === "creditCardData" && (
|
{type === "creditCardData" && (
|
||||||
<>
|
<>
|
||||||
<div className="space-y-1">
|
|
||||||
<Label className="text-xs text-slate-300">Item ID</Label>
|
|
||||||
<Input
|
|
||||||
value={itemId}
|
|
||||||
onChange={(e) => setItemId(e.target.value)}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div className="space-y-1">
|
<div className="space-y-1">
|
||||||
<Label className="text-xs text-slate-300">Collection ID</Label>
|
<Label className="text-xs text-slate-300">Collection ID</Label>
|
||||||
<Input
|
<Input
|
||||||
@@ -345,6 +338,13 @@ function WorkflowParameterEditPanel({
|
|||||||
onChange={(e) => setCollectionId(e.target.value)}
|
onChange={(e) => setCollectionId(e.target.value)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<Label className="text-xs text-slate-300">Item ID</Label>
|
||||||
|
<Input
|
||||||
|
value={itemId}
|
||||||
|
onChange={(e) => setItemId(e.target.value)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user