joker9657 3 лет назад
Родитель
Сommit
eef3779ecc
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/Grid/Column/Sorter.php

+ 2 - 2
src/Grid/Column/Sorter.php

@@ -72,7 +72,7 @@ class Sorter implements Renderable
     public function render()
     public function render()
     {
     {
         $type = 'desc';
         $type = 'desc';
-        $icon = 'up';
+        $icon = 'down';
         $active = '';
         $active = '';
 
 
         if ($this->isSorted()) {
         if ($this->isSorted()) {
@@ -80,7 +80,7 @@ class Sorter implements Renderable
             $active = 'active';
             $active = 'active';
 
 
             if ($this->sort['type'] === 'asc') {
             if ($this->sort['type'] === 'asc') {
-                $icon = 'down';
+                $icon = 'up';
             }
             }
         }
         }