mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2024-11-16 11:42:21 +08:00
fix: InputProps is deprecated
This commit is contained in:
parent
c37f22dc65
commit
176620e3bb
|
@ -165,17 +165,19 @@ export const BackupConfigViewer = memo(
|
||||||
spellCheck="false"
|
spellCheck="false"
|
||||||
inputRef={passwordRef}
|
inputRef={passwordRef}
|
||||||
{...register("password")}
|
{...register("password")}
|
||||||
InputProps={{
|
slotProps={{
|
||||||
endAdornment: (
|
input: {
|
||||||
<InputAdornment position="end">
|
endAdornment: (
|
||||||
<IconButton
|
<InputAdornment position="end">
|
||||||
onClick={handleClickShowPassword}
|
<IconButton
|
||||||
edge="end"
|
onClick={handleClickShowPassword}
|
||||||
>
|
edge="end"
|
||||||
{showPassword ? <VisibilityOff /> : <Visibility />}
|
>
|
||||||
</IconButton>
|
{showPassword ? <VisibilityOff /> : <Visibility />}
|
||||||
</InputAdornment>
|
</IconButton>
|
||||||
),
|
</InputAdornment>
|
||||||
|
),
|
||||||
|
},
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Grid2>
|
</Grid2>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user