Fix broken CMS commands (#5296)

This commit is contained in:
Charles Gagnon
2019-05-01 10:55:58 -07:00
committed by GitHub
parent 64bf211a45
commit 80da7ad496
5 changed files with 12 additions and 12 deletions

View File

@@ -22,7 +22,7 @@ export class CmsResourceEmptyTreeNode extends TreeNode {
let item = new TreeItem(CmsResourceEmptyTreeNode.addCmsServerLabel, TreeItemCollapsibleState.None);
item.command = {
title: CmsResourceEmptyTreeNode.addCmsServerLabel,
command: 'cms.resource.registerCMSServer',
command: 'cms.resource.registerCmsServer',
arguments: [this]
};
item.contextValue = CmsResourceItemType.cmsEmptyNodeContainer;
@@ -47,5 +47,5 @@ export class CmsResourceEmptyTreeNode extends TreeNode {
return 'message_cmsTreeNode';
}
private static readonly addCmsServerLabel = localize('cms.resource.tree.CMSTreeNode.addCmsServerLabel', 'Add Central Management Server...');
private static readonly addCmsServerLabel = localize('cms.resource.tree.CmsTreeNode.addCmsServerLabel', 'Add Central Management Server...');
}