mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 16:47:22 +01:00
actually sort chara data list lmao
This commit is contained in:
parent
a8c2ac3158
commit
861eadbd4b
1 changed files with 1 additions and 1 deletions
|
|
@ -568,7 +568,7 @@ internal sealed partial class CharaDataHubUi
|
||||||
ImGui.TableSetupColumn("Expires", ImGuiTableColumnFlags.WidthFixed, 18);
|
ImGui.TableSetupColumn("Expires", ImGuiTableColumnFlags.WidthFixed, 18);
|
||||||
ImGui.TableSetupScrollFreeze(0, 1);
|
ImGui.TableSetupScrollFreeze(0, 1);
|
||||||
ImGui.TableHeadersRow();
|
ImGui.TableHeadersRow();
|
||||||
foreach (var entry in _charaDataManager.OwnCharaData.Values)
|
foreach (var entry in _charaDataManager.OwnCharaData.Values.OrderBy(b => b.CreatedDate))
|
||||||
{
|
{
|
||||||
var uDto = _charaDataManager.GetUpdateDto(entry.Id);
|
var uDto = _charaDataManager.GetUpdateDto(entry.Id);
|
||||||
ImGui.TableNextColumn();
|
ImGui.TableNextColumn();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue