Skip to content

Commit

Permalink
Fixed download ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
andresharpe committed May 27, 2024
1 parent c939c4f commit 53f1442
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/cut/Commands/DownloadCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ await AnsiConsole.Live(table)
.ContentTypeIs(settings.ContentType)
.Skip(skip)
.Limit(page)
.OrderBy($"fields.{contentInfo.DisplayField}")
.Build();
var entries = await _contentfulClient.GetEntriesCollection<Entry<ExpandoObject>>(query);
Expand Down

0 comments on commit 53f1442

Please sign in to comment.