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..."}