diff --git a/src/components/DynamicPropertiesPanel.tsx b/src/components/DynamicPropertiesPanel.tsx index 1a6f9956..e290c516 100644 --- a/src/components/DynamicPropertiesPanel.tsx +++ b/src/components/DynamicPropertiesPanel.tsx @@ -47,24 +47,26 @@ function PropertyRow({ propKey, value, editingKey, displayMode, autoMode, vaultS } return ( -
- +
+ {propKey} {onDelete && ( )} - +
+ +
) } function InfoRow({ label, value }: { label: string; value: string }) { return ( -
- {label} - {value} +
+ {label} + {value}
) }