mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 11:10:48 +00:00
fixes #98456
This commit is contained in:
parent
a6c47beb1b
commit
f1d78ed43e
1 changed files with 1 additions and 1 deletions
|
@ -682,7 +682,7 @@ class CompositeBarModel {
|
||||||
|
|
||||||
private updateItemsOrder(): void {
|
private updateItemsOrder(): void {
|
||||||
if (this._items) {
|
if (this._items) {
|
||||||
this.items.forEach((item, index) => item.order = index);
|
this.items.forEach((item, index) => { if (item.order !== undefined) { item.order = index; } });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue