Просмотр исходного кода

修复弹窗选择器筛选无法设置标题问题

jqh 5 лет назад
Родитель
Сommit
6b2e62afca
1 измененных файлов с 1 добавлено и 3 удалено
  1. 1 3
      src/Grid/Filter/Presenter/SelectTable.php

+ 1 - 3
src/Grid/Filter/Presenter/SelectTable.php

@@ -21,8 +21,6 @@ class SelectTable extends Presenter
 
     protected $style = 'primary';
 
-    protected $title;
-
     protected $id;
 
     protected $options;
@@ -96,7 +94,7 @@ class SelectTable extends Presenter
      */
     public function title($title)
     {
-        $this->title = $title;
+        $this->dialog->title($title);
 
         return $this;
     }