Skip to content

Commit

Permalink
Many UI fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Aug 12, 2024
1 parent 5ab97b3 commit 0ed0d58
Show file tree
Hide file tree
Showing 12 changed files with 191 additions and 176 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static AzureIndexDefinition()
.GetProperties(BindingFlags.Public | BindingFlags.Static)
.Select(x => x.GetValue(null)!)
.Select(x => x.ToString()!)
.OrderBy(x => x)
.Order()
.ToList();

var addedLanguage = new HashSet<string>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ static IEnumerable<string> GetDataFields(IEnumerable<string> fields)
var addedFields = new List<string>();

// Sort the fields to start with prefixes first.
var allFields = GetDataFields(fields).Union(MetaFields.Values).OrderBy(x => x);
var allFields = GetDataFields(fields).Union(MetaFields.Values).Order();

foreach (var field in allFields)
{
Expand Down
2 changes: 1 addition & 1 deletion backend/src/Squidex/wwwroot/editor/squidex-editor.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0ed0d58

Please sign in to comment.