diff --git a/ee/tabby-ui/app/(dashboard)/components/worker-card.tsx b/ee/tabby-ui/app/(dashboard)/components/worker-card.tsx index 3d38525..2f672f9 100644 --- a/ee/tabby-ui/app/(dashboard)/components/worker-card.tsx +++ b/ee/tabby-ui/app/(dashboard)/components/worker-card.tsx @@ -17,14 +17,21 @@ export default function RunnerCard({ cpuCount, cpuInfo }: RunnerCardProps) { - const textClass = cn("ml-2", "whitespace-nowrap", "overflow-hidden", "overflow-ellipsis") - const cpuMessage = `${cpuInfo} (${cpuCount} cores)`; + const textClass = cn( + 'ml-2', + 'whitespace-nowrap', + 'overflow-hidden', + 'overflow-ellipsis' + ) + const cpuMessage = `${cpuInfo} (${cpuCount} cores)` return ( -

{name}

+

+ {name} +

@@ -47,7 +54,9 @@ export default function RunnerCard({ -

{addr}

+

+ {addr} +

-

{x}

+

+ {x} +

))}
diff --git a/ee/tabby-ui/app/(dashboard)/page.tsx b/ee/tabby-ui/app/(dashboard)/page.tsx index d4c2da7..c72cb3a 100644 --- a/ee/tabby-ui/app/(dashboard)/page.tsx +++ b/ee/tabby-ui/app/(dashboard)/page.tsx @@ -109,7 +109,8 @@ function MainPanel() { {!!registrationTokenRes?.registrationToken && (
- Registeration token: + Registeration token:{' '} + {registrationTokenRes.registrationToken} diff --git a/ee/tabby-ui/lib/stores/chat-store.ts b/ee/tabby-ui/lib/stores/chat-store.ts index c5ae976..ce2db87 100644 --- a/ee/tabby-ui/lib/stores/chat-store.ts +++ b/ee/tabby-ui/lib/stores/chat-store.ts @@ -3,7 +3,7 @@ import { create } from 'zustand' import { persist } from 'zustand/middleware' import { nanoid } from '@/lib/utils' -const excludeFromState = ['_hasHydrated', 'setHasHydrated', "activeChatId"] +const excludeFromState = ['_hasHydrated', 'setHasHydrated', 'activeChatId'] export interface ChatState { chats: Chat[] | undefined