Skip to content

Commit

Permalink
fix(ui): search with no result on flow raise an error
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed May 13, 2022
1 parent ce9d32d commit c911f7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/flows/Flows.vue
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@
})
},
rowClasses(flow) {
return flow.disabled ? ["disabled"] : [];
return flow && flow.disabled ? ["disabled"] : [];
}
}
};
Expand Down

0 comments on commit c911f7d

Please sign in to comment.