38
39
constructor(private readonly _state: IAutomationIsolationFormState) {
41
_state.folderUri = undefined;
42
_state.isolationMode = undefined;
43
_state.branch = undefined;
44
}
46
>
this._selectedBranch = isSelectableAutomationBranch(branch) ? branch : undefined;
47
>
this._state.branch = this._selectedBranch;
48
>
this._isQuickChat = observableValue(this, _state.isQuickChat);
49
>
this.isQuickChatObs = this._isQuickChat;
50
>
this._folderUri = observableValue(this, _state.folderUri);
51
>
this.folderUriObs = this._folderUri;
52
>
}
53
54
get isQuickChat(): boolean {