You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Had an issue where 7 pdf templates were failing to render with can't find width of undefined error. Turns out the smallest of unassigned variable boxes was on the 4th template, and was causing the above error. Error was happening here:
the fix is probably to catch the empty box at the point of assembly in the DAT where the above function is being used - aka, if a box doesn't have a variable assigned, don't call the above failing function.
The text was updated successfully, but these errors were encountered:
Had an issue where 7 pdf templates were failing to render with
can't find width of undefined
error. Turns out the smallest of unassigned variable boxes was on the 4th template, and was causing the above error. Error was happening here:a2jdeps/pdf/assemble.js
Line 27 in efdce80
the fix is probably to catch the empty box at the point of assembly in the DAT where the above function is being used - aka, if a box doesn't have a variable assigned, don't call the above failing function.
The text was updated successfully, but these errors were encountered: