add mysql keyboard shortcuts

This commit is contained in:
Bob Mannino
2025-08-11 19:28:29 +01:00
parent ad359defae
commit 957d1b5966
2 changed files with 4 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
import { usePathname, useRouter, useSearchParams } from "next/navigation";
import { useCallback, useEffect, useState } from "react";
const PAGES = ["compose", "application", "postgres", "redis"] as const;
const PAGES = ["compose", "application", "postgres", "redis", "mysql"] as const;
type Page = typeof PAGES[number];
type Shortcuts = Record<string, string>;
@@ -57,6 +57,7 @@ const SHORTCUTS: ShortcutsDictionary = {
compose: COMPOSE_SHORTCUTS,
postgres: POSTGRES_SHORTCUTS,
redis: REDIS_SHORTCUTS,
mysql: POSTGRES_SHORTCUTS,
};
/**

View File

@@ -29,6 +29,7 @@ import {
TooltipProvider,
TooltipTrigger,
} from "@/components/ui/tooltip";
import { UseKeyboardNav } from "@/hooks/use-keyboard-nav";
import { cn } from "@/lib/utils";
import { appRouter } from "@/server/api/root";
import { api } from "@/utils/api";
@@ -62,6 +63,7 @@ const MySql = (
return (
<div className="pb-10">
<UseKeyboardNav forPage="mysql" />
<BreadcrumbSidebar
list={[
{ name: "Projects", href: "/dashboard/projects" },