Skip to content

Commit 61bf4f2

Browse files
committed
bumped
1 parent cc2b360 commit 61bf4f2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

builds.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html>
22
<html>
3-
43
<head>
54
<meta charset="utf-8">
65
<meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
@@ -229,15 +228,15 @@
229228
var spdata = _.filter(datareverse, function (o) { return o[6] === 'X' })
230229
var lastrel = ''
231230
_.forEach(spdata, function (el, i) {
232-
if (el[2] != lastrel && el[1].indexOf('Retired') != -1) {
231+
if (el[2] != lastrel && el[1].indexOf('Retired') === -1) {
233232
results[el[0]][8] = 'X'
234233
lastrel = el[2]
235234
}
236235
})
237236
var cudata = _.filter(datareverse, function (o) { return o[7] === 'X' })
238237
var lastrel = ''
239238
_.forEach(cudata, function (el, i) {
240-
if (el[2] + el[3] != lastrel && el[1].indexOf('Retired') != -1) {
239+
if (el[2] + el[3] != lastrel && el[1].indexOf('Retired') === -1 ) {
241240
results[el[0]][9] = 'X'
242241
lastrel = el[2] + el[3]
243242
}

0 commit comments

Comments
 (0)