From 05616cc04501ffec3ff8af52ddbed605e204cb1e Mon Sep 17 00:00:00 2001 From: Benjamin Braatz Date: Tue, 7 Sep 2021 10:53:29 +0200 Subject: [PATCH] Bugfix in Debug interface. --- controlpi_plugins/web/Debug/controlpi-debug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controlpi_plugins/web/Debug/controlpi-debug.js b/controlpi_plugins/web/Debug/controlpi-debug.js index 420570e..c7656b8 100644 --- a/controlpi_plugins/web/Debug/controlpi-debug.js +++ b/controlpi_plugins/web/Debug/controlpi-debug.js @@ -260,7 +260,7 @@ function createSchema(schema) { } const valueDiv = document.createElement('div') valueDiv.setAttribute('class', 'value') - valueDiv.appendChild(document.createTextNode(JSON.stringify(thing))) + valueDiv.appendChild(document.createTextNode(JSON.stringify(schema))) return valueDiv } -- 2.34.1