From 0ce6bee24d42435199c2f68d334b4c9c539494b1 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 14 Jun 2019 18:33:41 +0200 Subject: [PATCH] #2810 --- src/app/Magic/Controllers/CubistMagicControllerTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Magic/Controllers/CubistMagicControllerTrait.php b/src/app/Magic/Controllers/CubistMagicControllerTrait.php index 98fd3ab..9c64cfe 100644 --- a/src/app/Magic/Controllers/CubistMagicControllerTrait.php +++ b/src/app/Magic/Controllers/CubistMagicControllerTrait.php @@ -56,7 +56,7 @@ trait CubistMagicControllerTrait $model = $this->getModelInstance(); - $this->crud->addColumn(['name' => $model->getPrimaryKey(), 'type' => 'number', 'label' => "#"]); + $this->crud->addColumn(['name' => $model->getPrimaryKey(), 'type' => 'number', 'label' => "#", 'searchLogic' => 'text']); foreach ($model->getFields() as $field) { $this->addField($field); -- 2.39.5