Bug solved

This commit is contained in:
gerard 2018-06-18 12:03:39 +02:00
parent 0aa4b8bba3
commit 5c92dc4216
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import ngModule from '../module';
*/ */
export default function dashIfEmpty() { export default function dashIfEmpty() {
return function(input) { return function(input) {
if (input == null || input == '') if (input == null || input === '')
return '-'; return '-';
return input; return input;
}; };