diff --git a/devices.html b/devices.html
index 99ae4f5..3aea201 100644
--- a/devices.html
+++ b/devices.html
@@ -146,18 +146,13 @@
Object.entries(json)
.sort()
.forEach(([key, value]) => {
- output += "
";
-
- output +=
- "" +
- value.label +
- "" +
- value.deviceId +
- "";
-
- output += "
";
+ output += `
+
+ ${value.label}
+
+ ${value.deviceId}
+
+
`;
});
output += "";
document.getElementById(element).innerHTML = output;