Skip to content
Closed

edit ui #8000

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/ButtonLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface ButtonLinkProps {
size?: 'md' | 'lg';
type?: 'primary' | 'secondary';
label?: string;
target?: '_self' | '_blank';
target?: '_self' | "_blank";
}

function ButtonLink({
Expand Down
4 changes: 2 additions & 2 deletions src/components/Layout/Sidebar/SidebarRouteTree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
import {useRef, useLayoutEffect, Fragment} from 'react';

import cn from 'classnames';
import {useRouter} from 'next/router';
import {useRouter} from "next/router";
import {SidebarLink} from './SidebarLink';
import {useCollapse} from 'react-collapsed';
import usePendingRoute from 'hooks/usePendingRoute';
import usePendingRoute from "hooks/usePendingRoute";
import type {RouteItem} from 'components/Layout/getRouteMeta';
import {siteConfig} from 'siteConfig';

Expand Down
2 changes: 2 additions & 0 deletions src/components/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import type {SVGProps} from 'react';

export function Logo(props: SVGProps<SVGSVGElement>) {
return (
<>
<svg
width="100%"
height="100%"
Expand All @@ -26,5 +27,6 @@ export function Logo(props: SVGProps<SVGSVGElement>) {
<ellipse rx="10" ry="4.5" transform="rotate(120)" />
</g>
</svg>
</>
);
}
Loading