mirror of
https://github.com/Infisical/infisical.git
synced 2025-03-29 22:02:57 +00:00
revert: change in core component
This commit is contained in:
@ -96,12 +96,8 @@ export const SecretInput = forwardRef<HTMLTextAreaElement, Props>(
|
||||
}}
|
||||
disabled={isDisabled}
|
||||
spellCheck={false}
|
||||
onKeyDown={(evt) => {
|
||||
if (evt.key === "Tab") {
|
||||
setIsSecretFocused.off();
|
||||
}
|
||||
}}
|
||||
onBlur={() => {
|
||||
onBlur={(evt) => {
|
||||
onBlur?.(evt);
|
||||
setIsSecretFocused.off();
|
||||
}}
|
||||
value={value || ""}
|
||||
|
Reference in New Issue
Block a user