From df188df81594881bf4bfc12a8da45d4daf0b6168 Mon Sep 17 00:00:00 2001 From: tabuna Date: Sun, 21 Apr 2024 03:52:19 +0300 Subject: [PATCH] Fixed width date column --- app/Orchid/Screens/Idea/ListScreen.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Orchid/Screens/Idea/ListScreen.php b/app/Orchid/Screens/Idea/ListScreen.php index 5401c657..130422aa 100644 --- a/app/Orchid/Screens/Idea/ListScreen.php +++ b/app/Orchid/Screens/Idea/ListScreen.php @@ -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)