Skip to content

Commit

Permalink
Merge pull request OpenMS#100 from t0mdavid-m/fix_file_selection
Browse files Browse the repository at this point in the history
Fix File Selection
  • Loading branch information
axelwalter authored Nov 21, 2024
2 parents 31252bd + 6c700e3 commit 11ac8ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workflow/ParameterManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def save_parameters(self) -> None:

# Merge with parameters from json
# Advanced parameters are only in session state if the view is active
json_params = json_params | self.get_parameters_from_json()
json_params = self.get_parameters_from_json() | json_params

# get a list of TOPP tools which are in session state
current_topp_tools = list(
Expand Down

0 comments on commit 11ac8ce

Please sign in to comment.