()
| 101 | } |
| 102 | |
| 103 | _update() { |
| 104 | if (this._timeline.isEmpty()) return; |
| 105 | DOM.removeAllChildren(this.table); |
| 106 | if (this._displayedLogEntries.length == 0) return; |
| 107 | const propertyName = this.groupKey.selectedOptions[0].text; |
| 108 | const groups = groupBy( |
| 109 | this._displayedLogEntries, each => each[propertyName], true); |
| 110 | this._render(groups, this.table); |
| 111 | } |
| 112 | |
| 113 | createSubgroups(group) { |
| 114 | const map = new Map(); |
nothing calls this directly
no test coverage detected