Loading
Fix collection map over status for dragged collections
Fixes https://github.com/galaxyproject/galaxy/issues/12614, which is the source of many templating errors such as https://sentry.galaxyproject.org/share/issue/008a129bf7e44b3086491789f4bfb07e/: ``` NotFound: cannot find 'forward' File "galaxy/util/template.py", line 87, in fill_template return unicodify(t, log_exception=False) File "galaxy/util/__init__.py", line 1183, in unicodify value = str(value) File "Cheetah/Template.py", line 1053, in __unicode__ return getattr(self, mainMethName)() File "cheetah_DynamicallyCompiledCheetahTemplate_1718305116_116218_60583.py", line 206, in respond ``` If we don't set `batch` and `map_over_type` (this is correctly done by the backend when building the parameter options from the history) we pass in the whole collection, which likely won't have a `forward` element.