Skip to content

Commit

Permalink
Merge pull request #8658 from shivendra-webkul/issue_8655
Browse files Browse the repository at this point in the history
fixed issue #8655
  • Loading branch information
jitendra-webkul committed Oct 16, 2023
2 parents 3258497 + f131f16 commit 11cc772
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function prepareColumns()
'type' => 'string',
'searchable' => false,
'filterable' => false,
'sortable' => false,
'sortable' => true,
]);

$this->addColumn([
Expand Down Expand Up @@ -120,9 +120,9 @@ public function prepareColumns()
'index' => 'comment',
'label' => trans('admin::app.customers.reviews.index.datagrid.comment'),
'type' => 'string',
'searchable' => true,
'filterable' => true,
'sortable' => true,
'searchable' => false,
'filterable' => false,
'sortable' => false,
]);

$this->addColumn([
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<div class="row grid grid-rows-1 grid-cols-[2fr_1fr_minmax(150px,_4fr)_0.5fr] items-center px-[16px] py-[10px] border-b-[1px] dark:border-gray-800">
<div
class="flex gap-[10px] items-center"
v-for="(columnGroup, index) in [['name', 'product_name', 'product_review_status'], ['rating', 'created_at', 'product_review_id'], ['title', 'comment']]"
v-for="(columnGroup, index) in [['customer_full_name', 'product_name', 'product_review_status'], ['rating', 'created_at', 'product_review_id'], ['title', 'comment']]"
>
@if ($hasPermission)
<label
Expand Down

0 comments on commit 11cc772

Please sign in to comment.