diff options
author | Tomasz Golabek <tomasz.golabek@nokia.com> | 2019-04-11 10:21:52 +0200 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2019-04-30 17:19:26 +0000 |
commit | 20d930a11a1a08722bde76378696e7fae1ba1e5e (patch) | |
tree | 06c963e0d55e6dd616c25faba9a5951a1a033887 /catalog-ui/src/app/view-models/workspace | |
parent | 0e7f223397e1bd8b5c62b7cdc1b1c7ac2eb1cc4c (diff) |
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 <tomasz.golabek@nokia.com>
Diffstat (limited to 'catalog-ui/src/app/view-models/workspace')
-rw-r--r-- | catalog-ui/src/app/view-models/workspace/tabs/deployment-artifacts/deployment-artifacts-view-model.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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); |