diff --git a/components/dashboard/src/components/Tooltip.tsx b/components/dashboard/src/components/Tooltip.tsx index 26576811333045..50ef03f647fc9f 100644 --- a/components/dashboard/src/components/Tooltip.tsx +++ b/components/dashboard/src/components/Tooltip.tsx @@ -9,14 +9,15 @@ import { useState } from 'react'; export interface TooltipProps { children: React.ReactChild[] | React.ReactChild; content: string; + className?: string; } function Tooltip(props: TooltipProps) { const [expanded, setExpanded] = useState(false); return ( -
setExpanded(false)} onMouseEnter={() => setExpanded(true)} className="relative"> -
+
setExpanded(false)} onMouseEnter={() => setExpanded(true)} className={"relative " + (props.className || "")}> +
{props.children}
{expanded ? diff --git a/components/dashboard/src/workspaces/WorkspaceEntry.tsx b/components/dashboard/src/workspaces/WorkspaceEntry.tsx index 69fe815a318a3b..18b37bffabbdb9 100644 --- a/components/dashboard/src/workspaces/WorkspaceEntry.tsx +++ b/components/dashboard/src/workspaces/WorkspaceEntry.tsx @@ -86,19 +86,31 @@ export function WorkspaceEntry({ desc, model, isAdmin, stopWorkspace }: Props) {
-
{ws.id}
-
{project || 'Unknown'}
+ + +
{ws.id}
+
+
+ + +
{project || 'Unknown'}
+
+
-
-
-
{ws.description}
+
+ +
{ws.description}
+
+ -
{ws.contextURL}
+
{ws.contextURL}
-
+
-
{currentBranch}
+ +
{currentBranch}
+