Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
b3960a7
initial groups functionality
kflemin May 14, 2026
181913d
lint
kflemin May 14, 2026
62cb2c8
Potential fix for pull request finding
kflemin May 15, 2026
fae1efa
fix: unwrap inventory group API responses
Copilot May 15, 2026
6d5ba86
fix: correct group create error message
Copilot May 15, 2026
0b2c26f
fix: use explicit error handlers in system/service dialogs and add or…
Copilot May 15, 2026
8fc4129
Potential fix for pull request finding
kflemin May 15, 2026
dda8454
Potential fix for pull request finding
kflemin May 15, 2026
38e62cc
Potential fix for pull request finding
kflemin May 15, 2026
a745a56
fix: improve org_id filter to handle falsy numeric IDs
Copilot May 15, 2026
cb28df8
fix: improve inventoryType derivation and add proper typing for servi…
Copilot May 15, 2026
4c2f87a
fix: preserve first-found behavior in pathFromRoot loop
Copilot May 15, 2026
b07dbb8
lint
kflemin May 15, 2026
49d5a06
fix inventory groups
kflemin May 16, 2026
a1c56ff
fix import data mapping table
kflemin May 16, 2026
4426e52
fixes for applying and deleting column list profiles
kflemin May 16, 2026
71e845b
make sure omitted column mapping profile headers are marked as omitte…
kflemin May 16, 2026
e38e33f
dark theme fixes
kflemin May 19, 2026
a176652
update meters page to view individual meters
kflemin May 19, 2026
256a1a8
add properties grid to group pages
kflemin May 19, 2026
fd9d643
adding sankey diagram on group dashboard
kflemin May 19, 2026
eaaf6ef
map fixes
kflemin May 20, 2026
d35a685
fix(map): select columns stream by inventory type
Copilot May 20, 2026
e4944ca
fix: guard undefined map layer in click handler
Copilot May 20, 2026
e2c783b
chore: remove unintended package-lock commit
Copilot May 20, 2026
57573d9
fix(groups): unwrap inventory group list responses consistently
Copilot May 20, 2026
0cf94bb
fix(map): guard popup overlay creation when popup element is missing
Copilot May 20, 2026
b3638cb
refactor: type guard layer z-index access in map click
Copilot May 20, 2026
a1dd35f
fix: guard undefined layer zIndex in map click handler
Copilot May 20, 2026
d754354
fix: unsubscribe inventory list streams on destroy
Copilot May 20, 2026
ec0a22a
fix upload dialog success state
Copilot May 20, 2026
3980912
clarify failed upload dialog result
Copilot May 20, 2026
83b9b0d
update translations
kflemin May 20, 2026
a3c994c
fix dev proxy issue
kflemin May 20, 2026
fa8e3d2
lint
kflemin May 20, 2026
ddc1747
lint
kflemin May 20, 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
2 changes: 2 additions & 0 deletions .spelling.dic
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,5 @@ unrs
unsubscription
xmark
csrftoken
sankey
evse
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"ag-grid-angular": "^35.2.0",
"ag-grid-community": "^35.2.0",
"chart.js": "^4.5.1",
"chartjs-chart-sankey": "^0.14.0",
"chartjs-plugin-annotation": "^3.1.0",
"chartjs-plugin-zoom": "^2.2.0",
"crypto-es": "^3.1.3",
Expand Down
12 changes: 12 additions & 0 deletions pnpm-lock.yaml

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

6 changes: 6 additions & 0 deletions proxy.conf.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ export default {
proxyReq.setHeader('origin', target)
proxyReq.setHeader('referer', `${target}/`)
},
onProxyRes: (proxyRes) => {
// Fix http-proxy mangling 204 No Content responses
if (proxyRes.statusCode === 204) {
proxyRes.headers['content-length'] = '0'
}
},
},
'/media/': {
target: process.env.SEED_HOST ?? 'http://127.0.0.1:8000',
Expand Down
89 changes: 89 additions & 0 deletions public/i18n/en_US.json

Large diffs are not rendered by default.

89 changes: 89 additions & 0 deletions public/i18n/es.json

Large diffs are not rendered by default.

89 changes: 89 additions & 0 deletions public/i18n/fr_CA.json

Large diffs are not rendered by default.

Loading
Loading