diff --git a/Model/Config/Source/Policy.php b/Model/Config/Source/Policy.php index f7d981b..1522efd 100644 --- a/Model/Config/Source/Policy.php +++ b/Model/Config/Source/Policy.php @@ -28,7 +28,7 @@ public function toOptionArray() $this->cache[] = ['value' => $one->getId(), 'label' => $one->getKey()]; } usort($this->cache, function ($a, $b) { - return $a['label'] > $b['label']; + return strcasecmp($a['label'], $b['label']); }); } return $this->cache;