Sorting question
I have default sorting on my table:
->defaultSort('created_at', 'desc')
Two columns are sortable:
TextColumn::make('title')->size('sm')->sortable(),
TextColumn::make('created_at')->size('sm')->sortable()->dateTime('d.m.Y'),
For each column, first two times sorting goes asc then desc and the up and down arrow lights up, but then third time sorting is off and the arrow is not lightened up. So third time sorting is off I guess and results are weird. Is this normal behaviour and can it be switched off so it goes asc desc only and change only if another sorting is clicked?0 Replies