We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46b2d8d commit 5b43819Copy full SHA for 5b43819
generate-stats.js
@@ -80,8 +80,8 @@ function generateTemplate(data) {
80
var rowsString = '';
81
82
function filter(array) {
83
- return array.filter(function(value, index, arr){
84
- return !exclude.includes(value);
+ return array.filter(function(value, index, arr) {
+ return value.length && !exclude.includes(value[0]);
85
});
86
}
87
0 commit comments