Merge pull request #2776 from matrix-org/erikj/fix_null_counter

Fix simple header counters to correctly handle zero, take two
pull/21833/head
J. Ryan Stinnett 2019-03-12 10:46:51 +00:00 committed by GitHub
commit 0791f220fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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) {