@@ -3584,7 +3584,6 @@ const char HTTP_BTN_MENU_BLE[] PROGMEM =
35843584 " <p></p><form action='" WEB_HANDLE_BLE " ' method='get'><button>" D_CONFIGURE_BLE " </button></form>" ;
35853585
35863586const char HTTP_FORM_BLE[] PROGMEM =
3587- " <fieldset><legend><b> " D_BLE_PARAMETERS " </b></legend>"
35883587 " <form method='get' action='" WEB_HANDLE_BLE " '>"
35893588 " <p><label><input id='e0' type='checkbox'%s><b>" D_BLE_ENABLE " </b></label></p>"
35903589 " <p><label><input id='e1' type='checkbox'%s><b>" D_BLE_ACTIVESCAN " </b></label></p>"
@@ -3593,7 +3592,7 @@ const char HTTP_FORM_BLE[] PROGMEM =
35933592
35943593const char HTTP_BLE_DEV_STYLE[] PROGMEM = " th, td { padding-left:5px; }" ;
35953594const char HTTP_BLE_DEV_START[] PROGMEM =
3596- " <fieldset><legend><b> " D_BLE_DEVICES " </b></legend>< table>"
3595+ " <table>"
35973596 " <tr><th><label>mac(type)</label></th><th><label>alias</label></th><th><label>name</label></th><th><label>RSSI</label></th><th><label>Age(max)</label></th></tr>" ;
35983597const char HTTP_BLE_DEV[] PROGMEM =
35993598 " <tr><td><label>%s(%d)</label></td><td><label>%s</label></td><td><label>%s</label></td><td><label>%d</label></td><td><label>%d(%d)</label></td></tr>" ;
@@ -3644,6 +3643,7 @@ void HandleBleConfiguration(void)
36443643 WSContentStart_P (PSTR (D_CONFIGURE_BLE));
36453644 WSContentSendStyle_P (HTTP_BLE_DEV_STYLE);
36463645 // WSContentSendStyle();
3646+ WSContentSend_P (HTTP_FIELDSET_LEGEND, PSTR (D_BLE_PARAMETERS));
36473647 WSContentSend_P (HTTP_FORM_BLE,
36483648 (Settings->flag5 .mi32_enable ) ? " checked" : " " ,
36493649 (BLEScanActiveMode) ? " checked" : " "
@@ -3655,6 +3655,7 @@ void HandleBleConfiguration(void)
36553655 // TasAutoMutex localmutex(&BLEOperationsRecursiveMutex, "BLEConf");
36563656 int number = seenDevices.size ();
36573657 if (number){
3658+ WSContentSend_P (HTTP_FIELDSET_LEGEND, PSTR (D_BLE_DEVICES));
36583659 WSContentSend_P (HTTP_BLE_DEV_START);
36593660 uint64_t now = esp_timer_get_time ();
36603661 now = now/1000L ;
0 commit comments