[web_server] Fix select compilation error in v1 (#13169)

This commit is contained in:
J. Nick Koston
2026-01-12 08:42:10 -10:00
committed by GitHub
parent 71d532a349
commit 9f9341a700

View File

@@ -202,7 +202,7 @@ void WebServer::handle_index_request(AsyncWebServerRequest *request) {
stream.print("<option></option>");
for (auto const &option : select->traits.get_options()) {
stream.print("<option>");
stream.print(option.c_str());
stream.print(option);
stream.print("</option>");
}
stream.print("</select>");