From 77e0b7d89cf6a9c29840ba48d81b6ca8a9211a73 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Mon, 27 Oct 2025 11:08:04 +0100 Subject: [PATCH] fix dashboard write #2693 --- interface/src/app/main/Dashboard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/app/main/Dashboard.tsx b/interface/src/app/main/Dashboard.tsx index cf44a86c2..657f714bc 100644 --- a/interface/src/app/main/Dashboard.tsx +++ b/interface/src/app/main/Dashboard.tsx @@ -82,7 +82,7 @@ const Dashboard = memo(() => { if (!selectedDashboardItem) { return; } - const id = selectedDashboardItem.id; // this is the parent ID + const id = selectedDashboardItem.parentNode.id; // this is the parent ID await sendDeviceValue({ id, c: devicevalue.c ?? '', v: devicevalue.v }) .then(() => { toast.success(LL.WRITE_CMD_SENT());