Skip to content

Commit

Permalink
fix(ux): 🐛 fix inverse ordering of tgl edit projects (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNZL committed Jun 24, 2023
1 parent 2a567ec commit 03f2c78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TogglTrack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,7 @@ internal async ValueTask<List<Result>> RequestEditEntry(CancellationToken token,
SubTitle = $"{((project.ClientId is not null) ? $"{project.Client!.Name} | " : string.Empty)}{project.ElapsedString}",
IcoPath = this._colourIconProvider.GetColourIcon(project.Colour, "edit.png"),
AutoCompleteText = $"{query.ActionKeyword} {Settings.EditCommand} ",
Score = me.ActiveProjects.Count - index,
Score = index,
Action = c =>
{
this._state.SelectedIds.Project = project.Id;
Expand Down

0 comments on commit 03f2c78

Please sign in to comment.