Skip to content

Commit da23c35

Browse files
committed
[dashboard] Fix: Show inactive workspaces if there are some
1 parent 08c974b commit da23c35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dashboard/src/workspaces/Workspaces.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const WorkspacesPage: FunctionComponent = () => {
106106
return <WorkspaceEntry key={info.id} info={info} />;
107107
})}
108108
{filteredActiveWorkspaces.length > 0 && <div className="py-6"></div>}
109-
{filteredActiveWorkspaces.length > 0 && (
109+
{filteredInactiveWorkspaces.length > 0 && (
110110
<div>
111111
<div
112112
onClick={() => setShowInactive(!showInactive)}

0 commit comments

Comments
 (0)