Skip to content
Closed
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
01b8c3a
Merge branch 'development' of https://github.com/OneCommunityGlobal/H…
vamsikrishna1704 Apr 15, 2025
652d8ac
Merge branch 'development' of https://github.com/OneCommunityGlobal/H…
vamsikrishna1704 Apr 24, 2025
056b93c
Merge branch 'development' of https://github.com/OneCommunityGlobal/H…
vamsikrishna1704 May 3, 2025
52279f9
Code files to fetch, update & delete issues
vamsikrishna1704 May 9, 2025
52eccac
Changes from development branch
vamsikrishna1704 May 9, 2025
bba4f28
Changes from development branch
vamsikrishna1704 May 9, 2025
97074af
Changes from development branch
vamsikrishna1704 May 10, 2025
0e3ebf6
person name and role added to table data
vamsikrishna1704 May 10, 2025
911cb3f
person name and role added to table data
vamsikrishna1704 May 11, 2025
eb5f679
Updated from the development branch
vamsikrishna1704 May 22, 2025
f393a9c
Added the CSS to accomodate dark theme
vamsikrishna1704 May 25, 2025
1eea958
Styles fix for the dark theme
vamsikrishna1704 May 31, 2025
59c7ff2
Issue options dropdown toggle BG fix
vamsikrishna1704 Jun 20, 2025
65f32a1
Shifted the filtering logic to backend api
vamsikrishna1704 Jun 21, 2025
f74e11c
Fixed the pagination error
vamsikrishna1704 Aug 1, 2025
58cb4b4
Light theme dropdown menu width fix
vamsikrishna1704 Aug 1, 2025
871092e
Final adjustments to the issues table
vamsikrishna1704 Aug 15, 2025
f297cb3
Resolved merge conflicts with the development branch
vamsikrishna1704 Aug 15, 2025
675e4a2
Merge branch 'development' of https://github.com/OneCommunityGlobal/H…
vamsikrishna1704 Aug 15, 2025
e343eb7
Resolved latest merge conflicts with development branch
vamsikrishna1704 Aug 15, 2025
7bef733
Resolved the version conflicts in package-lock.json
vamsikrishna1704 Aug 21, 2025
88c6f76
Latest yarn packages version conflicts resolved.
vamsikrishna1704 Sep 21, 2025
f6b2979
Fixed the table to show entries without having necessary fields.
vamsikrishna1704 Sep 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
139 changes: 74 additions & 65 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions src/__tests__/mockStates.js
Original file line number Diff line number Diff line change
Expand Up @@ -593,8 +593,8 @@ export const userProfileMock = {
},
mediaUrl: 'http://dropbox.com',
weeklySummariesCount: 0,
savedTangibleHrs:[
0,0,0,0,0,0,0,0
savedTangibleHrs: [
0, 0, 0, 0, 0, 0, 0, 0
],
};

Expand Down Expand Up @@ -1095,6 +1095,7 @@ export const rolesMock = {
'swapTask',
'deleteTask',
'updateNum',
'viewTaskExtensionCount',
// Teams
'postTeam',
'deleteTeam',
Expand Down Expand Up @@ -1254,6 +1255,7 @@ export const rolesMock = {
'updateTask',
'swapTask',
'deleteTask',
'viewTaskExtensionCount',
'postTeam',
'deleteTeam',
'putTeam',
Expand Down Expand Up @@ -1327,9 +1329,9 @@ export const createAuthMocks = (permissions) => {
frontPermissions: []
},
firstName: 'Dev',
profilePic:''
profilePic: ''
};
const onlyPermissions = {...authTemplate, permissions: {frontPermissions: permissions}};
const allOtherPermissions = {...authTemplate, permissions: {frontPermissions: allPermissionsExcept(permissions)}};
const onlyPermissions = { ...authTemplate, permissions: { frontPermissions: permissions } };
const allOtherPermissions = { ...authTemplate, permissions: { frontPermissions: allPermissionsExcept(permissions) } };
return [onlyPermissions, allOtherPermissions];
};
Loading