Skip to content

Commit

Permalink
fix: ProjectsService.getByParamsUnformatted query param bug (#3150)
Browse files Browse the repository at this point in the history
  • Loading branch information
SahilK-027 authored Jul 17, 2024
1 parent fe1b659 commit ad7dc0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/core/services/projects.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class ProjectsService {
// eslint-disable-next-line prefer-const
let { orgId, isEnabled, orgCategoryIds, searchNameText, limit, offset, sortOrder, sortDirection, projectIds } =
projectParams;
sortOrder = sortOrder || 'project_updated_at';
sortOrder = sortOrder || 'updated_at';
sortDirection = sortDirection || 'desc';

const params: PlatformProjectParams = {
Expand Down

0 comments on commit ad7dc0b

Please sign in to comment.