Compare commits

..

No commits in common. "f4a400522a8113b2ffba41ece1f94ac55b41f853" and "c4196eec833f8dcf838b6080f1b12e4f69ddf680" have entirely different histories.

5 changed files with 9 additions and 6 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -90,7 +90,7 @@ export function DashCommand() {
<>
<CommandDialog open={open} onOpenChange={setOpen}>
<CommandInput placeholder={t("TypeCommand")} value={search} onValueChange={setSearch} />
<CommandList className="border-t">
<CommandList>
<CommandEmpty>{t("NoResults")}</CommandEmpty>
<CommandGroup heading={t("Servers")}>
{sortedServers.map((server) => (

View File

@ -169,7 +169,7 @@ const ChartTooltipContent = React.forwardRef<
)}
>
{!nestLabel && (
<div className="px-2.5 pt-1 mx-auto -mb-1">{!nestLabel ? tooltipLabel : null}</div>
<p className="px-2.5 pt-1 mx-auto -mb-1">{!nestLabel ? tooltipLabel : null}</p>
)}
<div

View File

@ -40,7 +40,10 @@ const CommandInput = React.forwardRef<
React.ElementRef<typeof CommandPrimitive.Input>,
React.ComponentPropsWithoutRef<typeof CommandPrimitive.Input>
>(({ className, ...props }, ref) => (
<div className="flex items-center bg-stone-100 dark:bg-stone-900 px-3" cmdk-input-wrapper="">
<div
className="flex items-center border-b bg-stone-100 dark:bg-stone-900 px-3"
cmdk-input-wrapper=""
>
<Search className="mr-2 h-4 w-4 shrink-0 opacity-50" />
<CommandPrimitive.Input
ref={ref}

View File

@ -1,6 +1,6 @@
{
"name": "nezha-dash",
"version": "2.5.1",
"version": "2.5.0",
"private": true,
"scripts": {
"dev": "next dev -p 3040",
@ -50,7 +50,7 @@
"react-dom": "^19.0.0",
"react-intersection-observer": "^9.15.1",
"react-wrap-balancer": "^1.1.1",
"recharts": "^2.15.1",
"recharts": "^2.15.0",
"sharp": "^0.33.5",
"swr": "^2.3.0",
"tailwind-merge": "^2.6.0",
@ -60,7 +60,7 @@
"@biomejs/biome": "1.9.4",
"@next/bundle-analyzer": "^15.1.6",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.12.0",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"postcss": "^8.5.1",