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
Happens currently if you are editing jobs, see below image:
Happens because it's a check for len(x.complete_elements()) > 0 on the list. Not sure if it'll work but my best attempt at fixing now would be
%iflen(x.complete_elements()) >0`
You've already told about ${ comma_and([item for idx, item inenumerate(x.complete_elements()) if idx != i ]) }% endif
Needs to go in several places though, in this repo and maybe in docassemble-AssemblyLine as well.
The text was updated successfully, but these errors were encountered:
If we add - complete, the complete attribute, at the beginning of the edit: list, the only thing that happens is that it re-runs the code block that sets complete, which I think it just gets through without exception, since all of the other values are already set. You end up at the same screen with the same issue, and the complete variable is still set to true. There's no way to reconsider the complete attribute for the list items and all of their other values at the same time from the table that I can tell.
Is there a way to tell where the question is being triggered from? Something in the url args?
Tangentially, do any AL review questions have this problem? If not, they might in the future as we've mentioned wanting to list previous answers when we're collecting items.
Happens currently if you are editing jobs, see below image:
Happens because it's a check for
len(x.complete_elements()) > 0
on the list. Not sure if it'll work but my best attempt at fixing now would beNeeds to go in several places though, in this repo and maybe in docassemble-AssemblyLine as well.
The text was updated successfully, but these errors were encountered: