mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
Fix header counters to correctly handle zero
Currently if you set the value to zero the counter is not displayed.
This commit is contained in:
parent
8940c4e06f
commit
03d60e6af2
@ -122,7 +122,9 @@ module.exports = React.createClass({
|
||||
const severity = ev.getContent().severity || "normal";
|
||||
const stateKey = ev.getStateKey();
|
||||
|
||||
if (title && value && severity) {
|
||||
// We want a non-empty title but can accept falsey values (e.g.
|
||||
// zero)
|
||||
if (title && value !== undefined) {
|
||||
counters.push({
|
||||
"title": title,
|
||||
"value": value,
|
||||
|
Loading…
Reference in New Issue
Block a user