Fix #76440, comment thread collapsible state incorrectly set

This commit is contained in:
Rachel Macfarlane 2019-07-01 16:57:34 -07:00
parent 9e7bb2c881
commit cc9418df0c

View file

@ -127,7 +127,7 @@ export class ReviewZoneWidget extends ZoneWidget implements ICommentThreadWidget
this._commentThreadContextValue = contextKeyService.createKey('commentThread', _commentThread.contextValue);
this._resizeObserver = null;
this._isExpanded = _commentThread.collapsibleState ? _commentThread.collapsibleState === modes.CommentThreadCollapsibleState.Expanded : undefined;
this._isExpanded = _commentThread.collapsibleState === modes.CommentThreadCollapsibleState.Expanded;
this._globalToDispose = [];
this._commentThreadDisposables = [];
this._submitActionsDisposables = [];