From 8973ecdf7c46149c88855efc760ab1148500428e Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Tue, 9 Jun 2026 09:51:26 -0400 Subject: [PATCH] feat(uns): register S7/AbCip/AbLegacy/TwinCAT/Focas tag editors in the map (F-uns-1 T9) --- .../Uns/TagEditors/TagConfigEditorMap.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/Uns/TagEditors/TagConfigEditorMap.cs b/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/Uns/TagEditors/TagConfigEditorMap.cs index 6ace4b30..378db6ec 100644 --- a/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/Uns/TagEditors/TagConfigEditorMap.cs +++ b/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/Uns/TagEditors/TagConfigEditorMap.cs @@ -11,7 +11,11 @@ public static class TagConfigEditorMap new Dictionary(StringComparer.OrdinalIgnoreCase) { ["ModbusTcp"] = typeof(Components.Shared.Uns.TagEditors.ModbusTagConfigEditor), - // Further editors registered by later tasks, e.g. ["AbCip"] = typeof(...). + ["S7"] = typeof(Components.Shared.Uns.TagEditors.S7TagConfigEditor), + ["AbCip"] = typeof(Components.Shared.Uns.TagEditors.AbCipTagConfigEditor), + ["AbLegacy"] = typeof(Components.Shared.Uns.TagEditors.AbLegacyTagConfigEditor), + ["TwinCat"] = typeof(Components.Shared.Uns.TagEditors.TwinCATTagConfigEditor), + ["Focas"] = typeof(Components.Shared.Uns.TagEditors.FocasTagConfigEditor), }; /// Returns the editor component type for a driver type, or null if none is registered.