Display tracked trips on drafting board

This commit is contained in:
2025-07-06 14:02:41 +02:00
parent edee295fe1
commit ab9f192f6f
4 changed files with 85 additions and 74 deletions

View File

@@ -2,7 +2,7 @@ import * as Api from './api.js';
import { setupPopups } from "./popup.js";
import { setupLocationsSearch } from './locations-search.js';
import { setupJourneysSearch, attachJourneysSearch } from './journeys-search.js';
import { trackedTripsLocationsSorted } from './drafting-board.js';
import { drawDraftingBoard } from './drafting-board.js';
import { DataStore } from './datastore.js';
window.Api = Api;
@@ -14,4 +14,4 @@ setupJourneysSearch();
attachJourneysSearch(document.querySelector("#journeys-search-button"));
trackedTripsLocationsSorted();
drawDraftingBoard();