Bug solved
This commit is contained in:
parent
0aa4b8bba3
commit
5c92dc4216
|
@ -7,7 +7,7 @@ import ngModule from '../module';
|
|||
*/
|
||||
export default function dashIfEmpty() {
|
||||
return function(input) {
|
||||
if (input == null || input == '')
|
||||
if (input == null || input === '')
|
||||
return '-';
|
||||
return input;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue