Skip to content

Commit

Permalink
Bug in color parameter parsing...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Jan 25, 2024
1 parent 4e1d2dc commit 4fe497f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/parameters/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ def __init__(self, tool, input_source):
input_source = ensure_input_source(input_source)
super().__init__(tool, input_source)
self.value = input_source.get("value", "#000000")
self.rgb = input_source.get("rgb", False)
self.rgb = input_source.get_bool("rgb", False)

def get_initial_value(self, trans, other_values):
if self.value is not None:
Expand Down

0 comments on commit 4fe497f

Please sign in to comment.