mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-30 09:41:10 +01:00
Fixed logs auto column with, Time is statically set, others are dynamic (no more smallest possible width).
This commit is contained in:
@@ -33,9 +33,9 @@ Logs
|
||||
.TableHtmlAttributes(new { @class = "Grid" })
|
||||
.Columns(columns =>
|
||||
{
|
||||
columns.Bound(c => c.Time).Title("Time").Width(0);
|
||||
columns.Bound(c => c.Level).Title("Level").Width(0);
|
||||
columns.Bound(c => c.Logger).Title("Source").Width(0);
|
||||
columns.Bound(c => c.Time).Title("Time").Width(170);
|
||||
columns.Bound(c => c.Level).Title("Level");
|
||||
columns.Bound(c => c.Logger).Title("Source");
|
||||
columns.Bound(c => c.Message);
|
||||
})
|
||||
.DetailView(detailView => detailView.ClientTemplate(
|
||||
|
||||
@@ -33,9 +33,9 @@ Logs
|
||||
.TableHtmlAttributes(new { @class = "Grid" })
|
||||
.Columns(columns =>
|
||||
{
|
||||
columns.Bound(c => c.Time).Title("Time").Width(0);
|
||||
columns.Bound(c => c.Level).Title("Level").Width(0);
|
||||
columns.Bound(c => c.Logger).Title("Source").Width(0);
|
||||
columns.Bound(c => c.Time).Title("Time").Width(170);
|
||||
columns.Bound(c => c.Level).Title("Level");
|
||||
columns.Bound(c => c.Logger).Title("Source");
|
||||
columns.Bound(c => c.Message);
|
||||
})
|
||||
.DetailView(detailView => detailView.ClientTemplate(
|
||||
|
||||
Reference in New Issue
Block a user