The original selector syntax does not match our current implementation for injecting user inputs into VariablePool.tags/2.0.0-beta.1
| for selector in selectors: | for selector in selectors: | ||||
| result[selector.variable] = selector.value_selector | result[selector.variable] = selector.value_selector | ||||
| elif input.type == "variable": | elif input.type == "variable": | ||||
| result[parameter_name] = input.value | |||||
| selector_key = ".".join(input.value) | |||||
| result[f"#{selector_key}#"] = input.value | |||||
| elif input.type == "constant": | elif input.type == "constant": | ||||
| pass | pass | ||||