Fix history ordering
This commit is contained in:
parent
637aa523c6
commit
a86a056888
1 changed files with 2 additions and 1 deletions
|
|
@ -107,7 +107,8 @@ export class HistoryView extends ItemView {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const entries = this.client.getHistoryEntries();
|
// entries are newest first, but we prepend new ones
|
||||||
|
const entries = this.client.getHistoryEntries().toReversed();
|
||||||
|
|
||||||
if (this.historyEntryToElement.size === 0 && entries.length > 0) {
|
if (this.historyEntryToElement.size === 0 && entries.length > 0) {
|
||||||
// Clear the "No update has happened yet" message
|
// Clear the "No update has happened yet" message
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue