Skip to content

Commit

Permalink
#828 Add description search in workspace and Update per page for repo
Browse files Browse the repository at this point in the history
  • Loading branch information
D-GopalKrishna committed Dec 11, 2023
1 parent 7aa30ec commit 7db1fff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion applications/osb-portal/src/service/RepositoryService.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type RepositoriesListAndPaginationDetails = InlineResponse2001;

const workspacesApiUri = "/proxy/workspaces/api";

const PER_PAGE_DEFAULT = 18;
const PER_PAGE_DEFAULT = 24;

class RepositoryService {
workspacesApi: RestApi = null;
Expand Down
1 change: 1 addition & 0 deletions applications/osb-portal/src/service/WorkspaceService.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ class WorkspaceService {

if (filter.text) {
params.name__like = filter.text;
params.description__like = filter.text;
}

if (filter.user_id) {
Expand Down

0 comments on commit 7db1fff

Please sign in to comment.