Skip to content

Commit

Permalink
admin/logs: better layout
Browse files Browse the repository at this point in the history
  • Loading branch information
rejetto committed Jan 8, 2024
1 parent acdf4fd commit 260dadb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin/src/LogsPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,29 +106,29 @@ function LogFile({ file, pause, showApi }: { file: string, pause?: boolean, show
field: 'country',
valueGetter: ({ row }) => row.extra?.country,
hidden: !showCountry,
hideUnder: 'lg',
hideUnder: 'xl',
renderCell: ({ value }) => h(Country, { code: value, def: '-' }),
},
{
field: 'user',
headerName: "Username",
flex: .3,
maxWidth: 200,
hideUnder: 'lg',
hideUnder: 'xl',
},
tsColumn,
{
field: 'method',
headerName: "Method",
width: 80,
hideUnder: 'lg',
hideUnder: 'xl',
},
{
field: 'status',
headerName: "Code",
type: 'number',
width: 70,
hideUnder: 'lg',
hideUnder: 'xl',
},
{
field: 'length',
Expand Down

0 comments on commit 260dadb

Please sign in to comment.