Skip to content

Commit

Permalink
removed tabindex=0
Browse files Browse the repository at this point in the history
  • Loading branch information
sinamics committed Aug 28, 2023
1 parent 9bdc5c7 commit e238f96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions src/components/modules/networkDns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,7 @@ export const NetworkDns = ({ central = false }: IProp) => {

return (
<>
<div
tabIndex={0}
className="collapse-arrow collapse w-full border border-base-300 bg-base-200"
>
<div className="collapse-arrow collapse w-full border border-base-300 bg-base-200">
<input type="checkbox" />
<div className="collapse-title">{t("networkDns.DNS")}</div>
<div className="collapse-content" style={{ width: "100%" }}>
Expand Down
5 changes: 1 addition & 4 deletions src/components/modules/networkRoutes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,7 @@ export const NettworkRoutes = ({ central = false }: IProp) => {
if (isLoading) return <div>Loading</div>;

return (
<div
tabIndex={0}
className="collapse-arrow collapse w-full border border-base-300 bg-base-200"
>
<div className="collapse-arrow collapse w-full border border-base-300 bg-base-200">
<input type="checkbox" />
<div className="collapse-title">{t("nettworkRoutes.managedRoutesTitle")}</div>
<div className="collapse-content" style={{ width: "100%" }}>
Expand Down

0 comments on commit e238f96

Please sign in to comment.