8000 feat: Workspaces filtering by f0ssel · Pull Request #1972 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: Workspaces filtering #1972

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 23 commits into from
Jun 3, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
flicker less
  • Loading branch information
f0ssel committed Jun 2, 2022
commit 59e7d5ef2ba1d09392f749aa6521bded734acaca
2 changes: 1 addition & 1 deletion site/src/pages/WorkspacesPage/WorkspacesPageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const WorkspacesPageView: FC<WorkspacesPageViewProps> = ({ loading, works
</TableRow>
</TableHead>
<TableBody>
{loading && <TableLoader />}
{!workspaces && loading && <TableLoader />}
{workspaces && workspaces.length === 0 && (
<TableRow>
<TableCell colSpan={999}>
Expand Down
0