Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
5530be6
chore: multiple updates
joshuaunity Jan 23, 2026
2123746
chore: stabilized leeft side of modal and kicked off work onteh right…
joshuaunity Jan 26, 2026
a8d722d
chore: completed left side of graph modal
joshuaunity Jan 27, 2026
ca1e01f
Merge branch 'feat/allow-Ssensorstoshow-schema' of github.com:FlexMea…
joshuaunity Jan 27, 2026
f7966b0
Merge branch 'feat/allow-Ssensorstoshow-schema' of github.com:FlexMea…
joshuaunity Jan 30, 2026
79a1c8a
chore: work in progress
joshuaunity Feb 2, 2026
4b75e82
refactor: more stabilization work as well as reactivation of broken f…
joshuaunity Feb 2, 2026
3e03eed
Merge branch 'feat/allow-Ssensorstoshow-schema' of github.com:FlexMea…
joshuaunity Feb 2, 2026
b5f7700
Merge branch 'feat/allow-Ssensorstoshow-schema' of github.com:FlexMea…
joshuaunity Feb 3, 2026
9b08119
chore: reorder tabs
joshuaunity Feb 6, 2026
502554d
fix: fixed bug whre options keep gettgin added teh configType dropdow…
joshuaunity Feb 9, 2026
ce0a984
fix: fixed error where graph cant be removed
joshuaunity Feb 9, 2026
d6d75d8
fix: ixed issue with graph titles not being editable
joshuaunity Feb 9, 2026
b5b9876
fix: fixed broken units dropdown as well as some other refactoring to…
joshuaunity Feb 11, 2026
f878460
refactor: Major refactor phase 1
joshuaunity Feb 16, 2026
6ff2570
refactor: Major refactor phase 2
joshuaunity Feb 19, 2026
f9823c0
feat; new util function to find an asset site_asset
joshuaunity Feb 20, 2026
a96ca2b
chore: add extra info icon to form elements
joshuaunity Feb 20, 2026
9419875
chore: update writeup
joshuaunity Feb 20, 2026
66fe145
fix: fix failing util function due to wrong formatting allowing trail…
joshuaunity Feb 23, 2026
5eca7e8
Merge branch 'feat/allow-Ssensorstoshow-schema' into feat/sensortosho…
joshuaunity Feb 24, 2026
88b0449
fix: fixed bug where a new sensor cant be added to an existing graph
joshuaunity Feb 24, 2026
5552322
refactor: Fixed graphs to properly display subcharts and mixed charts…
joshuaunity Feb 26, 2026
25326dd
chore: removed unused code
joshuaunity Feb 26, 2026
1c4635d
Merge branch 'feat/allow-Ssensorstoshow-schema' into feat/sensortosho…
joshuaunity Feb 26, 2026
9582d27
refactor: post resolving conflicts refactoring
joshuaunity Feb 26, 2026
63b4539
tests: remove unsupported edgecase
joshuaunity Feb 26, 2026
cafc05b
fix: fix issue where unsuppoerted flexocntext fields are sent to API,…
joshuaunity Mar 2, 2026
c77f718
feat: up to date asset data for graph modals
joshuaunity Mar 2, 2026
b437123
fix: Fix bug where you cant remove sensors from a grpah with multiple…
joshuaunity Mar 3, 2026
5ee01b4
chore: amek all asset ref inputs equal size
joshuaunity Mar 3, 2026
2850567
Update flexmeasures/ui/templates/assets/asset_graph.html
joshuaunity Mar 3, 2026
eb47a6f
Update flexmeasures/ui/templates/assets/asset_graph.html
joshuaunity Mar 3, 2026
d02c738
fix: fixed error when trying to remove polts thats not a array of sen…
joshuaunity Mar 3, 2026
5a79e24
fix: Fixed bug where the options to select a felxConfig field disable…
joshuaunity Mar 3, 2026
d63a6aa
refactor: imporve fuction to improve readability and also fix edgecas…
joshuaunity Mar 3, 2026
c791f5a
fix: Fixed bug where sensors filter sectoin doesnt change after a sel…
joshuaunity Mar 3, 2026
d83587c
chore: udpate temp sensor naming sceme
joshuaunity Mar 5, 2026
69a1c9a
chore: persisten root asset selection
joshuaunity Mar 5, 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
1 change: 1 addition & 0 deletions flexmeasures/data/models/charts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def chart_type_to_chart_specs(chart_type: str, **kwargs) -> dict:
for chart_type, chart_specs in getmembers(belief_charts)
if isfunction(chart_specs) or isinstance(chart_specs, dict)
}

# Create chart specs
chart_specs_or_fnc = belief_charts_mapping[chart_type]
if isfunction(chart_specs_or_fnc):
Expand Down
Loading