New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@angular-generic-table/core

Package Overview
Dependencies
Maintainers
3
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-generic-table/core - npm Package Compare versions

Comparing version 4.11.0 to 4.11.1

7

CHANGELOG.md

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc