Skip to content

Commit 88030a5

Browse files
Crypta-Evewarlof
authored andcommitted
remove tracking ordering from alliance tracking datatable
1 parent 58a67f7 commit 88030a5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Http/DataTables/Alliance/Intel/TrackingDataTable.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ public function html()
9292
public function query()
9393
{
9494
return CorporationInfo::player()
95-
->with('member_limit', 'ceo', 'alliance')
96-
->withCount('characters')
95+
->with('member_limit', 'ceo', 'alliance', 'characters')
9796
->select('corporation_infos.*');
9897
}
9998

@@ -108,7 +107,7 @@ public function getColumns()
108107
['data' => 'ceo.name', 'title' => trans('web::seat.ceo')],
109108
['data' => 'tax_rate', 'title' => trans('web::seat.tax_rate')],
110109
['data' => 'member_count', 'title' => trans('web::seat.member_count')],
111-
['data' => 'tracking', 'title' => trans_choice('web::seat.valid_token', 2)],
110+
['data' => 'tracking', 'title' => trans_choice('web::seat.valid_token', 2), 'orderable' => false],
112111
];
113112
}
114113
}

0 commit comments

Comments
 (0)