Commit 60984ff4 authored by mgandres's avatar mgandres

Fix error flag reset in pipeline status component

parent 65a396ee
...@@ -63,8 +63,8 @@ export default { ...@@ -63,8 +63,8 @@ export default {
detailedStatus, detailedStatus,
}; };
}, },
result(data) { result(res) {
if (data.project?.pipeline) { if (res.data?.project?.pipeline) {
this.hasError = false; this.hasError = false;
} }
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment