Skip to content

Commit

Permalink
Fixed width date column
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Apr 21, 2024
1 parent 73abc20 commit df188df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Orchid/Screens/Idea/ListScreen.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,14 @@ public function layout(): iterable
}),

TD::make('created_at', __('Created'))
->width(100)
->width(120)
->usingComponent(DateTimeSplit::class)
->align(TD::ALIGN_RIGHT)
->defaultHidden()
->sort(),

TD::make('updated_at', 'Последнее обновление')
->width(100)
->width(120)
->usingComponent(DateTimeSplit::class)
->defaultHidden()
->align(TD::ALIGN_RIGHT)
Expand Down

0 comments on commit df188df

Please sign in to comment.