Skip to content
Snippets Groups Projects
Unverified Commit 0a3402ff authored by GyDi's avatar GyDi
Browse files

fix: icon button title

parent bd823080
No related branches found
No related tags found
No related merge requests found
......@@ -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 />}
......
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment