Skip to content

Commit

Permalink
fixes #1338
Browse files Browse the repository at this point in the history
  • Loading branch information
proddy committed Jan 14, 2024
1 parent c04371d commit 4ad5c72
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/emsdevice.cpp
Expand Up @@ -931,7 +931,8 @@ void EMSdevice::generate_values_web(JsonObject output) {

// add name, prefixing the tag if it exists. This is the id used in the WebUI table and must be unique
if (dv.has_tag()) {
obj["id"] = mask + tag_to_string(dv.tag) + " " + fullname;
// TODO check TAG https://github.com/emsesp/EMS-ESP32/issues/1338
obj["id"] = mask + fullname + " " + tag_to_string(dv.tag);
} else {
obj["id"] = mask + fullname;
}
Expand Down

0 comments on commit 4ad5c72

Please sign in to comment.