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/models/paths-and-names.ts | |
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/models/paths-and-names.ts')
-rw-r--r-- | catalog-ui/src/app/models/paths-and-names.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-ui/src/app/models/paths-and-names.ts b/catalog-ui/src/app/models/paths-and-names.ts index 43136378c0..7304d9641f 100644 --- a/catalog-ui/src/app/models/paths-and-names.ts +++ b/catalog-ui/src/app/models/paths-and-names.ts @@ -19,5 +19,5 @@ */ export class PathsAndNamesDefinition { - constructor(public path: string, public friendlyName: string, public searchable: boolean) {} + constructor(public path: string, public friendlyName: string, public searchable: boolean = true) {} }
\ No newline at end of file |