diff --git a/components/dashboard/src/components/ContextMenu.tsx b/components/dashboard/src/components/ContextMenu.tsx index 034fc3573fbc89..bebfb04b248e78 100644 --- a/components/dashboard/src/components/ContextMenu.tsx +++ b/components/dashboard/src/components/ContextMenu.tsx @@ -69,7 +69,7 @@ function ContextMenu(props: ContextMenuProps) { const menuId = String(Math.random()); // Default 'children' is the three dots hamburger button. - const children = props.children || Actions; + const children = props.children || Actions; return (
diff --git a/components/dashboard/src/projects/Projects.tsx b/components/dashboard/src/projects/Projects.tsx index e68ef0f20f8a5e..51ba0215cd5d85 100644 --- a/components/dashboard/src/projects/Projects.tsx +++ b/components/dashboard/src/projects/Projects.tsx @@ -118,17 +118,24 @@ export default function () { {projects.filter(filter).sort(hasNewerPrebuild).map(p => (
-
+
- {p.name} + {p.name}
- onRemoveProject(p) - }]} /> + onRemoveProject(p) + }, + ]} />