Turn off react resource tree (#963)

This commit is contained in:
victor-meng
2021-07-28 21:29:45 -07:00
committed by GitHub
parent a8bc821dec
commit a66fc06dad
2 changed files with 5 additions and 5 deletions

View File

@@ -54,10 +54,10 @@ export const ResourceTreeContainer: FunctionComponent<ResourceTreeContainerProps
</div>
{userContext.authType === AuthType.ResourceToken ? (
<ResourceTokenTree />
) : userContext.features.enableKOResourceTree ? (
<div style={{ overflowY: "auto" }} data-bind="react:resourceTree" />
) : (
) : userContext.features.enableReactResourceTree ? (
<ResourceTree container={container} />
) : (
<div style={{ overflowY: "auto" }} data-bind="react:resourceTree" />
)}
</div>
{/* Collections Window - End */}