diff --git a/Features/DeviceUIExtension.cs b/Features/DeviceUIExtension.cs index 094c05d..164c810 100644 --- a/Features/DeviceUIExtension.cs +++ b/Features/DeviceUIExtension.cs @@ -24,6 +24,9 @@ namespace Disco.Plugins.ADCompare.Features return Nothing(); var html = new StringBuilder(); + + // Wrapper div with unique ID for relocation + html.Append("
"); html.Append("
"); html.Append("

"); html.Append(" AD Compare

"); @@ -152,7 +155,19 @@ namespace Disco.Plugins.ADCompare.Features html.Append("
"); } - html.Append("
"); + html.Append(""); // form-group + html.Append(""); // wrapper + + // Script to relocate panel under the user assignment section + html.Append(""); + return Literal(html.ToString()); }