Commit 60984ff4 authored by mgandres's avatar mgandres

Fix error flag reset in pipeline status component

parent 65a396ee
......@@ -63,8 +63,8 @@ export default {
detailedStatus,
};
},
result(data) {
if (data.project?.pipeline) {
result(res) {
if (res.data?.project?.pipeline) {
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