Skip to content

Commit 4b8e270

Browse files
author
vikasrohit
authored
Merge pull request #2914 from appirio-tech/hotfix/unable_to_activate_v2_project_part_2
Fetching version of projects on project listing page to validate various things based on version
2 parents e0c9d45 + 1c7d8c0 commit 4b8e270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/projects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { TC_API_URL, PROJECTS_API_URL, PROJECTS_LIST_PER_PAGE } from '../config/
44

55
export function getProjects(criteria, pageNum) {
66
// add default params
7-
const includeFields = ['id', 'name', 'description', 'members', 'status', 'type', 'actualPrice', 'estimatedPrice', 'createdAt', 'updatedAt', 'createdBy', 'updatedBy', 'details', 'lastActivityAt', 'lastActivityUserId']
7+
const includeFields = ['id', 'name', 'description', 'members', 'status', 'type', 'actualPrice', 'estimatedPrice', 'createdAt', 'updatedAt', 'createdBy', 'updatedBy', 'details', 'lastActivityAt', 'lastActivityUserId', 'version']
88
const params = {
99
limit: PROJECTS_LIST_PER_PAGE,
1010
offset: (pageNum - 1) * PROJECTS_LIST_PER_PAGE,

0 commit comments

Comments
 (0)