From 050444c8e2d8c4d35dd414b497f58785f2810636 Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Thu, 9 Feb 2023 21:33:40 -0500 Subject: [PATCH] [+] Add search icon --- src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index e349eea..365510c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -52,6 +52,7 @@ export default function App() { const [bcLeft, setBcLeft] = createSignal(0) const paths = [window.location.host, ...path.split("/").filter(it => it)] + // Handle wheel for breadcrumb function wheel(e: WheelEvent) { let direction = (e.detail < 0 || e.deltaY > 0) ? 1 : -1 @@ -87,6 +88,7 @@ export default function App() { } + {api.loading && "Loading..."}