We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b93f01 commit f4b4a87Copy full SHA for f4b4a87
1 file changed
dashboard/src/components/benches/pipeline/Details.vue
@@ -166,6 +166,10 @@ const fetchSetErrs = () => {
166
warnings.fetch()
167
}
168
169
+// pipeline.doc exists if cache exists
170
+// if cache exists then onSuccess wont run so fetch errs!
171
+if(pipeline?.doc?.status == 'Failure') fetchSetErrs()
172
+
173
const wired = reactive(new Set<string>())
174
const builds = ref<Record<string, any>>({})
175
0 commit comments