ng2-filter-pipe
Advanced tools
Comparing version 0.1.8 to 0.1.9
# Changelog | ||
## 0.1.9 | ||
* [[#32](https://github.com/VadimDez/ng2-filter-pipe/issues/32)] - Filter fails when filter value is zero | ||
## 0.1.8 | ||
@@ -7,3 +10,3 @@ * Removed warning in Angular 4+ | ||
## 0.1.7 | ||
* [[#28](https://github.com/VadimDez/ng2-filter-pipe/pull/28)] - Filter number by string | ||
* [[#28](https://github.com/VadimDez/ng2-filter-pipe/issues/28)] - Filter number by string | ||
* Removed post install script | ||
@@ -10,0 +13,0 @@ |
@@ -68,3 +68,3 @@ "use strict"; | ||
return function (value) { | ||
return !filter || filter == value; | ||
return filter === undefined || filter == value; | ||
}; | ||
@@ -71,0 +71,0 @@ }; |
{ | ||
"name": "ng2-filter-pipe", | ||
"version": "0.1.8", | ||
"version": "0.1.9", | ||
"author": "Vadym Yatsyuk <vadym.yatsyuk@gmail.com>", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
Sorry, the diff of this file is not supported yet
19331