From 20d930a11a1a08722bde76378696e7fae1ba1e5e Mon Sep 17 00:00:00 2001 From: Tomasz Golabek Date: Thu, 11 Apr 2019 10:21:52 +0200 Subject: Ability to disable GAB filters. Filters for preconfigured columns can be disabled using props. (Should be merged after 'Dynamic columns in GAB table') Change-Id: Id740ceb211c3978499b9c69197929a43e61e9cdc Issue-ID: SDC-2234 Signed-off-by: Tomasz Golabek --- .../tabs/deployment-artifacts/deployment-artifacts-view-model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'catalog-ui/src/app/view-models/workspace') diff --git a/catalog-ui/src/app/view-models/workspace/tabs/deployment-artifacts/deployment-artifacts-view-model.ts b/catalog-ui/src/app/view-models/workspace/tabs/deployment-artifacts/deployment-artifacts-view-model.ts index 5ada3d0a69..fc3de6e9e1 100644 --- a/catalog-ui/src/app/view-models/workspace/tabs/deployment-artifacts/deployment-artifacts-view-model.ts +++ b/catalog-ui/src/app/view-models/workspace/tabs/deployment-artifacts/deployment-artifacts-view-model.ts @@ -301,7 +301,7 @@ export class DeploymentArtifactsViewModel { let pathsandnames: PathsAndNamesDefinition[] = []; if(typeof uiConfiguration.gab === 'undefined') { - noConfig = true + noConfig = true; } else { const gabConfig: GabConfig = uiConfiguration.gab .find(config => config.artifactType === artifact.artifactType); -- cgit 1.2.3-korg