1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

only titleize single word titles on action dialogs

This commit is contained in:
RaidMax
2022-10-25 14:03:35 -05:00
parent de94bf12bb
commit a2ccefd89d
3 changed files with 8 additions and 12 deletions

View File

@ -3,7 +3,7 @@
@{
Layout = null;
}
<h5 class="modal-title mb-10">@Model.Name?.Titleize()</h5>
<h5 class="modal-title mb-10">@(Model.Name?.Split(" ").Length == 1 ? Model.Name?.Titleize() : Model.Name)</h5>
@if (Model.Inputs.Any(input => input.Type != "hidden"))
{
<hr class="mb-10"/>