diff --git a/Features/UserUIExtension.cs b/Features/UserUIExtension.cs index a81eb11..8f33153 100644 --- a/Features/UserUIExtension.cs +++ b/Features/UserUIExtension.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 Details

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