Skip to content

Commit

Permalink
Merge 7e5fcd2 into 2e0bba9
Browse files Browse the repository at this point in the history
  • Loading branch information
Flix6x committed Sep 26, 2023
2 parents 2e0bba9 + 7e5fcd2 commit ba7dc87
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions flexmeasures/ui/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,10 @@
<!-- Render Charts -->
<script type="module" type="text/javascript">

import { getUniqueValues, convertToCSV } from "{{ url_for('flexmeasures_ui.static', filename='js/data-utils.js') }}";
import { subtract, thisMonth, lastNMonths, countDSTTransitions, getOffsetBetweenTimezonesForDate } from "{{ url_for('flexmeasures_ui.static', filename='js/daterange-utils.js') }}";
import { partition, updateBeliefs, beliefTimedelta, setAbortableTimeout} from "{{ url_for('flexmeasures_ui.static', filename='js/replay-utils.js') }}";
// Import local js (the FM version is used for cache-busting, causing the browser to fetch the updated version from the server)
import { getUniqueValues, convertToCSV } from "{{ url_for('flexmeasures_ui.static', filename='js/data-utils.js') }}?v={{ flexmeasures_version }}";
import { subtract, thisMonth, lastNMonths, countDSTTransitions, getOffsetBetweenTimezonesForDate } from "{{ url_for('flexmeasures_ui.static', filename='js/daterange-utils.js') }}?v={{ flexmeasures_version }}";
import { partition, updateBeliefs, beliefTimedelta, setAbortableTimeout} from "{{ url_for('flexmeasures_ui.static', filename='js/replay-utils.js') }}?v={{ flexmeasures_version }}";

let vegaView;
let previousResult;
Expand Down

0 comments on commit ba7dc87

Please sign in to comment.