mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-06-20 21:00:41 +00:00
feat: update custom field input to textarea for better usability; enhance styles for improved display
This commit is contained in:
@@ -357,7 +357,10 @@ export default function VaultDetailView(props: VaultDetailViewProps) {
|
||||
<div className="custom-field-label" title={fieldName}>{fieldName}</div>
|
||||
<div className="custom-field-body">
|
||||
<div className="custom-field-value">
|
||||
<strong className="value-ellipsis" title={fieldType === 1 && !isHiddenVisible ? '' : rawValue}>
|
||||
<strong
|
||||
className={fieldType === 1 && !isHiddenVisible ? 'value-ellipsis' : 'custom-field-display'}
|
||||
title={fieldType === 1 && !isHiddenVisible ? '' : rawValue}
|
||||
>
|
||||
{fieldType === 1 && !isHiddenVisible ? maskSecret(rawValue) : rawValue}
|
||||
</strong>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user