Skip to content

Commit c2b21aa

Browse files
committed
Fix when showiing when it is empty
1 parent 72cc148 commit c2b21aa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

site/src/pages/WorkspacesPage/WorkspacesPageView.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@ export const WorkspacesPageView: FC<
145145
</Stack>
146146
<WorkspacesTable
147147
workspaces={workspaces}
148-
isUsingFilter={filterProps.filter.query !== ""}
148+
isUsingFilter={
149+
filterProps.filter.query !== "" &&
150+
filterProps.filter.query !== "owner:me"
151+
}
149152
onUpdateWorkspace={onUpdateWorkspace}
150153
error={error}
151154
/>

0 commit comments

Comments
 (0)