Skip to content

Commit

Permalink
fix(ux): 🐛 fix buggy tgl reports span-[offset] detection (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNZL committed Jun 24, 2023
1 parent 6df08f0 commit 6425713
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/TogglTrack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2150,7 +2150,8 @@ internal async ValueTask<List<Result>> RequestViewReports(CancellationToken toke

return filteredGroupings.ConvertAll(grouping => new Result
{
Title = grouping.Argument,
// ! see #79... also Flow-Launcher/Flow.Launcher#2201 and Flow-Launcher/Flow.Launcher#2202
Title = $"{grouping.Argument}{new string('\u200B', queryToGrouping.Length)}",
SubTitle = grouping.Interpolation,
IcoPath = "reports.png",
AutoCompleteText = $"{query.ActionKeyword} {queryToGrouping} {grouping.Argument} ",
Expand Down

0 comments on commit 6425713

Please sign in to comment.