mirror of
https://github.com/zadam/trilium.git
synced 2025-11-04 20:36:13 +01:00
fix ordering of note contexts, fixes #2283
This commit is contained in:
@@ -353,7 +353,7 @@ export default class TabManager extends Component {
|
||||
const order = {};
|
||||
let i = 0;
|
||||
|
||||
for (const ntxId in ntxIdsInOrder) {
|
||||
for (const ntxId of ntxIdsInOrder) {
|
||||
order[ntxId] = i++;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user