fix ordering of note contexts, fixes #2283

This commit is contained in:
zadam
2021-10-27 21:32:03 +02:00
parent a7d3dafcf1
commit bcabe5786f
4 changed files with 16 additions and 4 deletions

View File

@@ -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++;
}