Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explore/Logs: Alphabetically sort unique labels, labels and parsed fields #29030

Merged
merged 1 commit into from
Nov 13, 2020

Conversation

ivanahuckova
Copy link
Member

What this PR does / why we need it:
#22659 was mentioning sorting of unique labels in alphabetical order. I've also seen our internal users searching for labels/parsed fields, so I think this little change can have a nice impact for usability and search-ability trough labels and fields.

Which issue(s) this PR fixes:

Fixes #22659

@ivanahuckova ivanahuckova requested review from a team, peterholmberg, kaydelaney, davkal, zoltanbedi and aocenas and removed request for a team, peterholmberg and kaydelaney November 11, 2020 14:28
@ivanahuckova ivanahuckova self-assigned this Nov 11, 2020
@ivanahuckova ivanahuckova added this to the 7.4 milestone Nov 11, 2020
Copy link
Member

@Elfo404 Elfo404 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good! 🚀

Just an idea: did you consider doing a case-insensitive sort instead?
with very little effort it may improve user experience even more, something like

const alphabeticallyInsensitive = (a: string, b: string) => a.toLowerCase().localeCompare(b.toLowerCase());

wdyt?

EDIT: I just realized that maybe it doesn't make sense given the context, please ignore :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

sort loki labels by label name
4 participants