From 0abd1d8fc2d4f00e02321b204942a44611927a51 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Mon, 8 Jun 2026 13:25:15 -0400 Subject: [PATCH] fix(uns): delete-confirm reports not-available instead of false success for unwired kinds (review) --- .../Components/Pages/Uns/GlobalUns.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/Components/Pages/Uns/GlobalUns.razor b/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/Components/Pages/Uns/GlobalUns.razor index 9d4242c4..d2e0a216 100644 --- a/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/Components/Pages/Uns/GlobalUns.razor +++ b/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/Components/Pages/Uns/GlobalUns.razor @@ -266,7 +266,7 @@ default: // Equipment/Tag/VirtualTag deletes are wired in later tasks. - result = new UnsMutationResult(true, null); + result = new UnsMutationResult(false, "Delete for this node kind is not yet available."); break; }