Fix error in reduce
This commit is contained in:
parent
4704a70cb7
commit
58105824d9
1 changed files with 1 additions and 3 deletions
|
@ -141,9 +141,7 @@ export class LogItem implements ILogItem {
|
|||
} else if (this._children) {
|
||||
return this._children.reduce((sum, c) => {
|
||||
const duration = c.durationOfType(type);
|
||||
if (duration) {
|
||||
return sum + duration;
|
||||
}
|
||||
return sum + (duration ?? 0);
|
||||
}, 0);
|
||||
} else {
|
||||
return 0;
|
||||
|
|
Reference in a new issue