You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry - another minor bug + suggested fix. In the demos, highlight Volume 2. Press refresh. The volumes are listed as:
Volume 2
Volume 0
Volume 1
Volume 3
Volume 4
Go into a subfolder under Volume 2 and press refresh. The volumes are listed as:
Volume 0
Volume 1
Volume 2
-> Subfolder
Volume 3
Volume 4
The simplest fix would be to add an OrderBy on line 169 of Connector.cs:
openResp.files = openResp.files.OrderBy(f => (f as BaseInfoResponse)?.name ?? string.Empty).ToList();
And make the files property setter public. There may be a more elegant place to put this with a bit of refactoring.
Thanks.
The text was updated successfully, but these errors were encountered:
Sorry - another minor bug + suggested fix. In the demos, highlight Volume 2. Press refresh. The volumes are listed as:
Volume 2
Volume 0
Volume 1
Volume 3
Volume 4
Go into a subfolder under Volume 2 and press refresh. The volumes are listed as:
Volume 0
Volume 1
Volume 2
-> Subfolder
Volume 3
Volume 4
The simplest fix would be to add an OrderBy on line 169 of Connector.cs:
openResp.files = openResp.files.OrderBy(f => (f as BaseInfoResponse)?.name ?? string.Empty).ToList();
And make the files property setter public. There may be a more elegant place to put this with a bit of refactoring.
Thanks.
The text was updated successfully, but these errors were encountered: