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 04434a2 commit 775b7caCopy full SHA for 775b7ca
lib/settings.js
@@ -162,6 +162,16 @@ class Settings {
162
return
163
}
164
165
+ //remove nulls and undefined in the results
166
+ this.results = this.results.filter((thing) => thing ? true : false)
167
+
168
+ //remove duplicate rows in this.results
169
+ this.results = this.results.filter((thing, index, self) => {
170
+ return index === self.findIndex((t) => {
171
+ return t.type === thing.type && t.repo === thing.repo && t.plugin === thing.plugin
172
+ })
173
174
175
let error = false
176
// Different logic
177
const stats = {
0 commit comments