Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions Dashboard/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -666,9 +666,9 @@ <h2>📈 DXCC Statistics</h2>

async function loadPropagationData() {
try {
const response = await fetch('enhanced_predictions.json');
const response = await fetch('propagation_data.json');
const data = await response.json();
// Extract the predictions object from the enhanced data structure
// Extract the predictions object from the data structure
propData = data.predictions || data;
initializeDashboard();
} catch (error) {
Expand Down
Loading