Fix simple header counters to correctly handle zero, take two

pull/21833/head
Erik Johnston 2019-03-12 10:00:10 +00:00
parent 03d60e6af2
commit 1a35130869
1 changed files with 23 additions and 25 deletions

View File

@ -213,7 +213,6 @@ module.exports = React.createClass({
const severity = counter.severity;
const stateKey = counter.stateKey;
if (title && value && severity) {
let span = <span>{ title }: { value }</span>
if (link) {
@ -241,7 +240,6 @@ module.exports = React.createClass({
key={"delim" + idx}
> </span>
);
}
});
if (counters.length > 0) {