@angular-generic-table/core
Advanced tools
Comparing version 4.11.0 to 4.11.1
@@ -5,6 +5,9 @@ Release History | ||
## [Unreleased] | ||
# [4.11.1] - 2018-01-19 | ||
### Fixed | ||
- Condition check in gt render pipe for 0, null, '' and false values #178 | ||
# [4.11.0] - 2018-01-16 | ||
### Added | ||
- Events for `gt-column-order-change` and `gt-column-visibility-change` (emitted by gt-column-settings component) (issue #173) | ||
- Events for `gt-column-order-change` and `gt-column-visibility-change` (emitted by gt-column-settings component, see wiki and [events](https://github.com/hjalmers/angular-generic-table/wiki/Events) for more info) (issue #173) | ||
@@ -11,0 +14,0 @@ ### Fixed |
{ | ||
"name": "@angular-generic-table/core", | ||
"version": "4.11.0", | ||
"version": "4.11.1", | ||
"description": "A generic table component for Angular", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -80,3 +80,3 @@ "use strict"; | ||
//console.log(!row[fields[i].objectKey]); | ||
if (fields[i].value && typeof fields[i].value === 'function' && !row[fields[i].objectKey]) { | ||
if (fields[i].value && typeof fields[i].value === 'function' && !row.hasOwnProperty(fields[i].objectKey)) { | ||
row[fields[i].objectKey] = loading ? '' : fields[i].value(row); | ||
@@ -83,0 +83,0 @@ } |
Sorry, the diff of this file is not supported yet
348855