We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a83a281 commit d4202afCopy full SHA for d4202af
site/src/pages/WorkspacesPage/filter/filter.tsx
@@ -22,6 +22,7 @@ export const workspaceFilterQuery = {
22
running: "status:running",
23
failed: "status:failed",
24
dormant: "dormant:true",
25
+ outdated: "updated:false",
26
};
27
28
type FilterPreset = {
@@ -48,6 +49,10 @@ const PRESET_FILTERS: FilterPreset[] = [
48
49
query: workspaceFilterQuery.failed,
50
name: "Failed workspaces",
51
},
52
+ {
53
+ query: workspaceFilterQuery.outdated,
54
+ name: "Outdated workspaces",
55
+ },
56
];
57
58
// Defined outside component so that the array doesn't get reconstructed each render
0 commit comments