Browse Source

chrome 89

jqh 4 years ago
parent
commit
903a55dd6c
3 changed files with 3 additions and 2 deletions
  1. 1 1
      .travis.yml
  2. 0 0
      resources/views/filter/simple-container.blade.php
  3. 2 1
      src/Grid/LazyRenderable.php

+ 1 - 1
.travis.yml

@@ -49,7 +49,7 @@ install:
   - php artisan admin:publish --force
   - php artisan admin:install
   - php artisan migrate:rollback
-  - php artisan dusk:chrome-driver 87
+  - php artisan dusk:chrome-driver 89
 #  - php artisan dusk:update 79
   - cp -f ./tests/routes.php ./app/Admin/
   - cp -rf ./tests/resources/config ./config/

+ 0 - 0
resources/views/filter/tile-container.blade.php → resources/views/filter/simple-container.blade.php


+ 2 - 1
src/Grid/LazyRenderable.php

@@ -9,6 +9,7 @@ use Dcat\Admin\Support\LazyRenderable as Renderable;
 abstract class LazyRenderable extends Renderable
 {
     const SIMPLE_NAME = '_simple_';
+
     const ROW_SELECTOR_COLUMN_NAME = '_row_columns_';
 
     /**
@@ -75,7 +76,7 @@ HTML;
 
             $grid->filter()
                 ->panel()
-                ->view('admin::filter.tile-container');
+                ->view('admin::filter.simple-container');
 
             $grid->rowSelector()->click();
         }