fix: icon button title

This commit is contained in:
GyDi
2022-03-30 01:29:25 +08:00
Unverified
parent bb8a59d1db
commit 3afdf9571e
2 changed files with 6 additions and 7 deletions

View File

@@ -129,13 +129,13 @@ const ProxyGlobal = (props: Props) => {
<MyLocationRounded />
</IconButton>
<IconButton size="small" title="check" onClick={onCheckAll}>
<IconButton size="small" title="delay check" onClick={onCheckAll}>
<NetworkCheckRounded />
</IconButton>
<IconButton
size="small"
title="check"
title="proxy detail"
onClick={() => setShowType(!showType)}
>
{showType ? <VisibilityRounded /> : <VisibilityOffRounded />}
@@ -143,7 +143,7 @@ const ProxyGlobal = (props: Props) => {
<IconButton
size="small"
title="check"
title="filter"
onClick={() => setShowFilter(!showFilter)}
>
{showFilter ? <FilterAltRounded /> : <FilterAltOffRounded />}

View File

@@ -154,13 +154,13 @@ const ProxyGroup = ({ group }: Props) => {
<MyLocationRounded />
</IconButton>
<IconButton size="small" title="check" onClick={onCheckAll}>
<IconButton size="small" title="delay check" onClick={onCheckAll}>
<NetworkCheckRounded />
</IconButton>
<IconButton
size="small"
title="check"
title="proxy detail"
onClick={() => setShowType(!showType)}
>
{showType ? <VisibilityRounded /> : <VisibilityOffRounded />}
@@ -168,7 +168,7 @@ const ProxyGroup = ({ group }: Props) => {
<IconButton
size="small"
title="check"
title="filter"
onClick={() => setShowFilter(!showFilter)}
>
{showFilter ? <FilterAltRounded /> : <FilterAltOffRounded />}
@@ -176,7 +176,6 @@ const ProxyGroup = ({ group }: Props) => {
{showFilter && (
<TextField
autoFocus
hiddenLabel
value={filterText}
size="small"