mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
Sort names alphabetically in the FFlag editor
This commit is contained in:
parent
6652d43308
commit
b5f4017326
@ -33,7 +33,7 @@ namespace Bloxstrap.UI.Elements.Menu.Pages
|
||||
|
||||
var presetFlags = FastFlagManager.PresetFlags.Values;
|
||||
|
||||
foreach (var pair in App.FastFlags.Prop)
|
||||
foreach (var pair in App.FastFlags.Prop.OrderBy(x => x.Key))
|
||||
{
|
||||
if (!_showPresets && presetFlags.Contains(pair.Key))
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user