[frontend/core] Fix sorting of ascendant notes
This commit is contained in:
parent
122bba5b55
commit
4b8bc540f8
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ internal class RelatedStore : NoteMessageProvider, IDisposable
|
||||||
|
|
||||||
private class NoteContainer
|
private class NoteContainer
|
||||||
{
|
{
|
||||||
public SortedList<string, NoteResponse> Notes { get; } = new(Comparer<string>.Create((x, y) => y.CompareTo(x)));
|
public SortedList<string, NoteResponse> Notes { get; } = new();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
|
|
Loading…
Add table
Reference in a new issue