Spacing and translation keys.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD 2024-12-07 22:34:02 -07:00
parent 8f4d610825
commit b7384fda6b
3 changed files with 4 additions and 4 deletions

View File

@ -6,6 +6,7 @@
var userLanguage = userConfig.UserLanguage;
}
@model ReportParameter
<h2 class="swal2-title mb-2">@translator.Translate(userLanguage, "Select Columns")</h2>
<div id="columnSelector" style="max-height:50vh; overflow-y:auto;">
<ul class="list-group">
@foreach (string column in Model.VisibleColumns)
@ -24,8 +25,8 @@
}
</ul>
</div>
<h2 class="swal2-title">Filter by Tags</h2>
<div class="mt-2 text-start">
<h2 class="swal2-title mb-2">@translator.Translate(userLanguage, "Filter by Tags")</h2>
<div class="text-start">
<select class="form-select mb-2" id="tagSelector">
<!option value="@TagFilter.Exclude">@translator.Translate(userLanguage, "Exclude Records with these Tags")</!option>
<!option value="@TagFilter.IncludeOnly">@translator.Translate(userLanguage, "Only Include Records with these Tags")</!option>

File diff suppressed because one or more lines are too long

View File

@ -58,7 +58,6 @@ function generateVehicleHistoryReport() {
if (data) {
//prompt user to select columns
Swal.fire({
title: 'Select Columns',
html: data,
confirmButtonText: 'Generate Report',
focusConfirm: false,