Skip to content

Commit

Permalink
Closes-bug: #1584015 - Web-UI : Flow export rate shows as '-' in land…
Browse files Browse the repository at this point in the history
…ing page

even for 0 value

Change-Id: Ie53b1165c87475e6eeea781c5e9814cec3ba58fb
  • Loading branch information
sbavanasi committed May 20, 2016
1 parent 74c5781 commit 68e7449
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -27,7 +27,7 @@
}
}
if ('flow_export_rate' == rowData['key']) {
if ((undefined == val) || ("" == val)) {
if ((undefined === val) || (null === val) || ("" === val)) {
return "-";
} else {
return val;
Expand Down

0 comments on commit 68e7449

Please sign in to comment.