Skip to content
Snippets Groups Projects
Commit af7f6227 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

Merge branch 'fixing-full-ui-launching' into '2.8.2.3-DEVELOPMENT'

Fixing full ui launching

See merge request !1599
parents 6723c87c 14bcf462
No related branches found
No related tags found
3 merge requests!1606catch 2.8.3 up with main,!1605Merge 2.8.2.3 work to main,!1599Fixing full ui launching
Pipeline #14635 passed
......@@ -90,6 +90,7 @@ def lookup_file(request: Request) -> WorkflowRequestFile:
:param request: an HTTP request
:return: a WorkflowRequestFile object containing filename and file content for this request, if any
"""
for file in lookup_request(request).files:
if file.filename == request.matchdict["filename"]:
return file
......
......@@ -465,7 +465,7 @@ class WorkflowService(WorkflowServiceIF):
if "product_locator" in wf_request.argument:
argument = wf_request.argument["product_locator"]
elif "product_group_id" in wf_request.argument:
argument = wf_request.argument["product_group_id"]
argument = str(wf_request.argument["product_group_id"])
else:
argument = None
argument2 = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment