DashboardPane: Fix that ordering dashlets is persistent
This commit is contained in:
parent
b63a956a38
commit
8c8af9cd50
|
@ -44,7 +44,9 @@ class DashboardPane extends NavigationItem
|
|||
}
|
||||
|
||||
if ($ordered) {
|
||||
ksort($this->dashlets);
|
||||
$dashlets = $this->dashlets;
|
||||
ksort($dashlets);
|
||||
return $dashlets;
|
||||
}
|
||||
|
||||
return $this->dashlets;
|
||||
|
|
Loading…
Reference in New Issue