Explorar el Código

修复表格导出功能当没有使用连贯调用时titles设置可能被重置问题

jqh hace 4 años
padre
commit
0fee5f3380
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Grid/Concerns/HasExporter.php

+ 1 - 1
src/Grid/Concerns/HasExporter.php

@@ -48,7 +48,7 @@ trait HasExporter
             $exporter->resolve($exporterDriver);
         }
 
-        return $exporter->titles($titles);
+        return $titles ? $exporter->titles($titles) : $exporter;
     }
 
     /**