Skip to content

Commit 68f0d92

Browse files
fix another merge mistake (reverse sorting)
1 parent e05b2aa commit 68f0d92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Models/Feature/Feature.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ public static function getDropdownItems($withHidden = 0) {
343343
return strnatcasecmp($a['name'], $b['name']);
344344
}
345345

346-
return $sortB <=> $sortA;
346+
return $sortA <=> $sortB;
347347
});
348348
}
349349
unset($features); // break the reference

0 commit comments

Comments
 (0)