Made a few small fixes to the list_sessions.yml interview after using it this morning:
The interviews were listed all out of order, which made it hard to know where to start looking: they are now sorted alphabetically
speedy_get_users returned Tuples, which didn't seem to be working in the user selection on the first screen of list_sessions, and I don't think DA handles very well in general. I changed it to return a List of key-value maps, which is what the code section of a combobox expects.
Tested both of these changes in apps-dev, and it works great. Might merge these soon, since I've trying to use it to pinpoint more production errors with the ALAffidavitOfIndigency that are appearing.
Made a few small fixes to the
list_sessions.yml
interview after using it this morning:speedy_get_users
returned Tuples, which didn't seem to be working in the user selection on the first screen oflist_sessions
, and I don't think DA handles very well in general. I changed it to return a List of key-value maps, which is what thecode
section of a combobox expects.Tested both of these changes in apps-dev, and it works great. Might merge these soon, since I've trying to use it to pinpoint more production errors with the ALAffidavitOfIndigency that are appearing.