Fix comment update event

This commit is contained in:
Rachel Macfarlane 2018-11-08 15:34:16 -08:00
parent 0a2d071eb7
commit 7ff0971c85

View file

@ -98,7 +98,7 @@ export class CommentService extends Disposable implements ICommentService {
}
updateComments(ownerId: string, event: CommentThreadChangedEvent): void {
const evt = assign({}, event, { ownerId });
const evt: ICommentThreadChangedEvent = assign({}, event, { owner: ownerId });
this._onDidUpdateCommentThreads.fire(evt);
}