style: same key tooltip

This commit is contained in:
jialin
2026-03-16 10:31:57 +08:00
parent 1462768aa9
commit f7c3b28cc8
+11 -9
View File
@@ -83,15 +83,17 @@ const LabelItem: React.FC<LabelItemProps> = ({
open={open}
title={intl.formatMessage({ id: 'resources.table.key.tips' })}
>
<SealInput.Input
disabled={disabled}
checkStatus="success"
label={intl.formatMessage({ id: 'common.input.key' })}
value={label.key}
onChange={handleOnKeyChange}
onBlur={(e: any) => handleKeyOnBlur(e, 'key')}
onPaste={onPaste}
></SealInput.Input>
<span>
<SealInput.Input
disabled={disabled}
checkStatus="success"
label={intl.formatMessage({ id: 'common.input.key' })}
value={label.key}
onChange={handleOnKeyChange}
onBlur={(e: any) => handleKeyOnBlur(e, 'key')}
onPaste={onPaste}
></SealInput.Input>
</span>
</Tooltip>
)}
</div>