Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
74cf711
Added the code files of Loss tracking line chart
karnati007 Aug 7, 2025
0d651b1
Merge branch 'development' of https://github.com/OneCommunityGlobal/H…
karnati007 Aug 9, 2025
0f22aa2
Fixed the styles for the dark mode theme
karnati007 Aug 9, 2025
c88c4e3
Fixed the styles for the dark mode theme
karnati007 Aug 9, 2025
ad2a39e
Fixed the styles for the dark mode theme
karnati007 Aug 9, 2025
2bb7cbd
Fixed the styles for the dark mode theme
karnati007 Aug 9, 2025
f1caaad
Fixed the reset filters btn and legend styles.
karnati007 Aug 30, 2025
9941f8e
Fixed the reset filters btn and legend styles.
karnati007 Aug 30, 2025
841c2df
Updated the line graph to fix styling problems.
karnati007 Oct 6, 2025
4d32db0
Merge development into Ganesh_impl_loss_tracking_line_graph
saitejakaasoju Mar 18, 2026
cb01ef0
Fix LossTrackingLineChart: data key bug, dark mode, memoization
saitejakaasoju Mar 18, 2026
8723ffe
Fix page scrollability and chart container overflow
saitejakaasoju Mar 18, 2026
0370f38
Update package lockfiles after npm install
saitejakaasoju Mar 18, 2026
2cb8cee
Merge origin/development into SaiTeja_loss_tracking_line_graph
saitejakaasoju Mar 31, 2026
8e46b4e
Fix yarn.lock integrity after cache clean
saitejakaasoju Apr 1, 2026
753db1c
Merge branch 'development' into SaiTeja_loss_tracking_line_graph
saitejakaasoju Apr 9, 2026
a3f21f2
Fix dark mode date input styling in material utilization chart
saitejakaasoju Apr 9, 2026
92f02cb
fix: sync yarn lockfile for loss tracking line graph
saitejakaasoju Apr 14, 2026
63dce4d
Merge branch 'development' into SaiTeja_loss_tracking_line_graph
saitejakaasoju Apr 14, 2026
3743f84
Fix loss tracking chart dark mode and axis spacing
saitejakaasoju Apr 21, 2026
2ee0edb
Merge branch 'development' into SaiTeja_loss_tracking_line_graph
saitejakaasoju Apr 21, 2026
1b2d8e3
Merge branch 'development' into SaiTeja_loss_tracking_line_graph
saitejakaasoju Apr 23, 2026
8de602c
Update yarn lockfile after merge resolution
saitejakaasoju Apr 23, 2026
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
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
"@react-leaflet/core": "^2.1.0",
"@reduxjs/toolkit": "^2.4.0",
"@sentry/browser": "^9.15.0",
"@tanstack/react-query": "^5.90.16",
"@tanstack/react-query": "^5.91.0",
"@tinymce/miniature": "^6.0.0",
"@tinymce/tinymce-react": "^6.1.0",
"ajv": "^8.18.0",
"ajv-keywords": "^5.1.0",
"ant-design": "^1.0.0",
"antd": "^5.27.6",
"antd": "^5.29.3",
"assert": "^2.1.0",
"axios": "^1.13.5",
"axios-mock-adapter": "^1.22.0",
Expand Down Expand Up @@ -72,7 +72,7 @@
"leaflet": "^1.9.4",
"leaflet.heat": "^0.2.0",
"leaflet.markercluster": "^1.5.3",
"libphonenumber-js": "^1.12.38",
"libphonenumber-js": "^1.12.40",
"lodash": "^4.17.21",
"lucide-react": "^0.484.0",
"micromatch": "^4.0.8",
Expand All @@ -96,6 +96,7 @@
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"react-leaflet": "4.2.1",
"react-leaflet-cluster": "^3.1.0",
"react-multi-select-component": "^4.0.2",
"react-phone-input-2": "^2.14.0",
"react-redux": "^7.2.0",
Expand Down
7 changes: 5 additions & 2 deletions src/App.module.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
html {
overflow-x: hidden;
overflow-y: auto !important;
height: 100%;
}

body {
display: grid;
grid-template-columns: auto 0;
overflow-y: auto !important;
height: 100%;
}

Expand All @@ -15,10 +17,11 @@ button {
}

#root {
min-height: 100%;
overflow-x: auto;
overflow-y: auto;
height: 100%;

/* background-color: var(--background-color); */
overflow: auto;
background-color: #fff;
}

Expand Down
Loading
Loading