Skip to content

Commit fe07c6e

Browse files
committed
Minor UI fix in backend
1 parent 72f70a8 commit fe07c6e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • src/Presentation/SmartStore.Web/Administration/Views/ScheduleTask

src/Presentation/SmartStore.Web/Administration/Views/ScheduleTask/List.cshtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
</div>
1313
</div>
1414

15-
<table class="table" id="schedule-tasks-grid">
15+
<table class="table admin-table" id="schedule-tasks-grid">
1616
<thead>
1717
<tr>
1818
<th>@T("Admin.System.ScheduleTasks.Name")</th>
1919
<th>@T("Admin.System.ScheduleTasks.Enabled")</th>
2020
<th>@T("Admin.System.ScheduleTasks.CronExpression")</th>
21-
<th>@T("Admin.System.ScheduleTasks.LastStart")</th>
21+
<th style="min-width: 150px">@T("Admin.System.ScheduleTasks.LastStart")</th>
2222
<th>@T("Admin.System.ScheduleTasks.NextRun")</th>
2323
<th>@T("Admin.Common.Actions")</th>
2424
</tr>
@@ -39,13 +39,13 @@
3939
}
4040
</td>
4141
<!-- LastStart -->
42-
<td>
42+
<td style="min-width: 300px">
4343
<div class="last-run-info">
4444
@Html.Partial("_LastRun", task)
4545
</div>
4646
</td>
4747
<!-- NextRun -->
48-
<td style="min-width: 300px">
48+
<td style="min-width: 150px">
4949
<div class="next-run-info">
5050
@Html.Partial("_NextRun", task)
5151
</div>

0 commit comments

Comments
 (0)