We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd0191a commit 2efc817Copy full SHA for 2efc817
src/unfold.ts
@@ -440,6 +440,7 @@ export class FilterFileTreeBrowserModel extends FilterFileBrowserModel {
440
needsToEmit = true;
441
}
442
443
+ const oldValue = this._path;
444
this._path = value;
445
446
if (needsToEmit) {
@@ -450,8 +451,8 @@ export class FilterFileTreeBrowserModel extends FilterFileBrowserModel {
450
451
452
pathChanged.emit({
453
name: 'path',
- oldValue: this._path,
454
- newValue: PathExt.dirname(this._path)
+ oldValue,
455
+ newValue: this._path,
456
});
457
458
0 commit comments