From 41b6caf5dbe951bde693ecdd2bf75cd023d74869 Mon Sep 17 00:00:00 2001 From: Russel Yasol Date: Thu, 9 May 2024 08:46:35 +0800 Subject: [PATCH] fixed Fetching bands message not showing --- simpleadmin/www/network.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpleadmin/www/network.html b/simpleadmin/www/network.html index dff6e87..8c9cc45 100644 --- a/simpleadmin/www/network.html +++ b/simpleadmin/www/network.html @@ -570,9 +570,9 @@ init() { // Function to populate checkboxes const showPopulateCheckboxes = () => { + this.isGettingBands = true; Promise.all([getSupportedBands(), getLockedBands()]) .then(([supportedBandsData, lockedBandsData]) => { - this.isGettingBands = true; this.lte_bands = supportedBandsData.lte_bands; this.nsa_bands = supportedBandsData.nsa_bands; this.sa_bands = supportedBandsData.sa_bands;