Skip to content

Commit 5a335da

Browse files
committed
refactor(site): Add default owner:me filter to workspaces
1 parent 784696d commit 5a335da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/pages/WorkspacesPage/filter/filter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export const useFilter = ({
5050
onUpdate?: () => void
5151
}) => {
5252
const [searchParams, setSearchParams] = searchParamsResult
53-
const query = searchParams.get("filter") ?? ""
53+
const query = searchParams.get("filter") ?? "owner:me"
5454
const values = parseFilterQuery(query)
5555

5656
const update = (values: string | FilterValues) => {

0 commit comments

Comments
 (0)