This commit is contained in:
Eric Amodio
2020-04-06 23:58:04 -04:00
parent 8b8a8ed724
commit 4ccf3e4ef3
6 changed files with 9 additions and 10 deletions

View File

@@ -60,7 +60,7 @@ export class ExtHostTimeline implements IExtHostTimeline {
let disposable: IDisposable | undefined;
if (provider.onDidChange) {
disposable = provider.onDidChange(e => this._proxy.$emitTimelineChangeEvent({ ...e, id: provider.id }), this);
disposable = provider.onDidChange(e => this._proxy.$emitTimelineChangeEvent({ uri: undefined, reset: true, ...e, id: provider.id }), this);
}
const itemsBySourceAndUriMap = this._itemsBySourceAndUriMap;