diff --git a/SelectWiFiDialog.vue b/SelectWiFiDialog.vue
index fff17da..a0c99c9 100644
--- a/SelectWiFiDialog.vue
+++ b/SelectWiFiDialog.vue
@@ -7,8 +7,8 @@
Scanning WiFi...
-
+
@@ -67,9 +67,14 @@ const scandata = reactive({ wifi_scan_res: 10 });
PostData({ wifi_scan: 1 }, 2, 0, () => { });
setTimeout(() => { PostData(scandata, 2, 0, () => onDataReady()) }, 7000);
+const pagination = {
+ page: 1,
+ rowsPerPage: 0
+}
+
const columns = [
{ name: 'ssid', label: 'SSID', align: 'left', field: 'ssid', sortable: true },
{ name: 'rssi', label: 'RSSI', field: 'rssi', sortable: true },
- { name: 'ch', label: 'CHANNEL', field: 'ch', sortable: true },
+ { name: 'ch', label: 'CH', field: 'ch', sortable: true },
]
diff --git a/cards/WifiSetCard.vue b/cards/WifiSetCard.vue
index 247d963..594389f 100644
--- a/cards/WifiSetCard.vue
+++ b/cards/WifiSetCard.vue
@@ -8,9 +8,8 @@