From 5545c82e68037309bcef203770c84ced629d53ac Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Tue, 16 Jan 2024 17:52:06 +0100 Subject: [PATCH] Prep for generic use --- tasmota/include/i18n.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasmota/include/i18n.h b/tasmota/include/i18n.h index 5f6cc8c6d..b7c8a21a0 100644 --- a/tasmota/include/i18n.h +++ b/tasmota/include/i18n.h @@ -935,8 +935,8 @@ const float kSpeedConversionFactor[] = {1, // none // xdrv_02_webserver.ino #ifdef USE_WEBSERVER // {s} = , {m} = , {e} = -const char HTTP_SNS_HR[] PROGMEM = "
{e}"; -const char HTTP_SNS_HR_THIN[] PROGMEM = "
{e}"; +const char HTTP_SNS_HR[] PROGMEM = "
"; +const char HTTP_SNS_HR_THIN[] PROGMEM = "
"; const char HTTP_SNS_F_TEMP[] PROGMEM = "{s}%s " D_TEMPERATURE "{m}%*_f " D_UNIT_DEGREE "%c{e}"; const char HTTP_SNS_F_VOLTAGE[] PROGMEM = "{s}%s " D_VOLTAGE "{m}%*_f " D_UNIT_VOLT "{e}"; const char HTTP_SNS_F_CURRENT_MA[] PROGMEM = "{s}%s " D_CURRENT "{m}%*_f " D_UNIT_MILLIAMPERE "{e}";