diff --git a/CaddyManager/Components/Pages/Caddy/CaddyReverseProxies/CaddyReverseProxyItem.razor b/CaddyManager/Components/Pages/Caddy/CaddyReverseProxies/CaddyReverseProxyItem.razor index fcf6475..8d0da68 100644 --- a/CaddyManager/Components/Pages/Caddy/CaddyReverseProxies/CaddyReverseProxyItem.razor +++ b/CaddyManager/Components/Pages/Caddy/CaddyReverseProxies/CaddyReverseProxyItem.razor @@ -7,21 +7,6 @@ @ConfigurationInfo.FileName - @if (ConfigurationInfo.Tags.Count > 0) - { - - - @("tag".ToQuantity(ConfigurationInfo.Tags.Count)) - - - @foreach (var tag in ConfigurationInfo.Tags) - { - ⏵ @tag - } - - - } @ConfigurationInfo.ReverseProxyHostname @@ -36,6 +21,21 @@ } + @if (ConfigurationInfo.Tags.Count > 0) + { + + + @("tag".ToQuantity(ConfigurationInfo.Tags.Count)) + + + @foreach (var tag in ConfigurationInfo.Tags) + { + ⏵ @tag + } + + + }