ltr input
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-06-18 23:09:24 +03:30
parent 4d27448450
commit b2a8975053
3 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ const Input: FC<Props> = (props: Props) => {
<input {...props} onChange={(e) => {
setSearch(e.target.value)
handleInputChange(e)
}} value={props.seprator ? formattedValue : props.value} type={props.type === 'password' && showPassword ? 'text' : props.type === 'password' ? 'password' : undefined} className={inputClass} />
}} value={props.seprator ? formattedValue : props.value} type={props.type === 'password' ? (showPassword ? 'text' : 'password') : props.type} className={inputClass} />
{
props.type === 'password' &&