1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

remove whitespace on alias display and client name search

This commit is contained in:
RaidMax
2021-03-31 11:20:32 -05:00
parent 70cbf34ceb
commit cf6d71a8e5
2 changed files with 15 additions and 10 deletions

View File

@ -38,18 +38,22 @@
<div id="profile_aliases" class="text-muted pt-0 pt-lg-2 pb-2">
@foreach (var linked in Model.LinkedAccounts)
{
@Html.ActionLink(linked.Value.ToString("X"), "ProfileAsync", "Client", new {id = linked.Key}, new {@class = "link-inverse"})<br/>
<div>
@Html.ActionLink(linked.Value.ToString("X"), "ProfileAsync", "Client", new {id = linked.Key}, new {@class = "link-inverse"})
</div>
}
@foreach (var alias in Model.Aliases)
{
<color-code value="@alias" allow="@ViewBag.EnableColorCodes"></color-code>
<br/>
<div>
<color-code value="@alias" allow="@ViewBag.EnableColorCodes"></color-code>
</div>
}
@foreach (string ip in Model.IPs)
@foreach (var ip in Model.IPs)
{
<a class="ip-locate-link" href="#" data-ip="@ip">@ip</a>
<br/>
<div>
<a class="ip-locate-link" href="#" data-ip="@ip">@ip</a>
</div>
}
</div>
}