diff --git a/assets/js/sections/bandmap_list.js b/assets/js/sections/bandmap_list.js index e493cdbec..1567e65b6 100644 --- a/assets/js/sections/bandmap_list.js +++ b/assets/js/sections/bandmap_list.js @@ -904,10 +904,14 @@ $(function() { var table = get_dtable(); if (!cachedSpotData || cachedSpotData.length === 0) { - disposeTooltips(); - table.clear(); - table.settings()[0].oLanguage.sEmptyTable = lang_bandmap_no_data; - table.draw(); + // Only show "no data" if not currently fetching + // During fetch, keep showing current table contents + if (!isFetchInProgress) { + disposeTooltips(); + table.clear(); + table.settings()[0].oLanguage.sEmptyTable = lang_bandmap_no_data; + table.draw(); + } return; }