Skip to content

Commit

Permalink
fix(jexl): fix jexl dependency gathering for empty tables (projectcal…
Browse files Browse the repository at this point in the history
  • Loading branch information
kaldras authored Feb 15, 2021
1 parent 5233af4 commit 22c68d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/lib/dependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export function dependencies(

const field = findField(this.document, fieldSlug, expression);

if (!onlyNestedParents && nestedSlug) {
if (!onlyNestedParents && nestedSlug && field.value) {
// Get the nested fields from the parents value (rows)
return [
field,
Expand Down

0 comments on commit 22c68d3

Please sign in to comment.