Fix JS error when no statuses returned

deploy-ci
shpuld 6 years ago
parent 53e104dc32
commit 068da3cf9f

@ -106,7 +106,7 @@ const Timeline = {
tag: this.tag tag: this.tag
}).then(statuses => { }).then(statuses => {
store.commit('setLoading', { timeline: this.timelineName, value: false }) store.commit('setLoading', { timeline: this.timelineName, value: false })
if (statuses.length === 0) { if (statuses && statuses.length === 0) {
this.bottomedOut = true this.bottomedOut = true
} }
}) })

Loading…
Cancel
Save