This commit is contained in:
RupengLiu 2021-03-12 14:54:10 -08:00 коммит произвёл GitHub
Родитель 7698a84f18
Коммит a8deae57bb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -102,8 +102,8 @@ export class ApiTreeItem extends AzureParentTreeItem<IApiTreeRoot> {
public async reloadApi(api: ApiContract): Promise<void> {
this.apiContract = api;
this._name = nonNullProp(api, 'name');
//this._root = this.createRoot(this.parent, nonNullProp(api, 'name'));
this._label = this.getRevisionDisplayName(api);
this._root = this.createRoot(this.root, this._name);
this._operationsTreeItem = new ApiOperationsTreeItem(this);
this.policyTreeItem = new ApiPolicyTreeItem(this);
}