We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd104a4 commit 6c8533eCopy full SHA for 6c8533e
pipeline_plugins/variables/collections/common.py
@@ -162,7 +162,9 @@ def get_value(self):
162
163
meta_values = json.loads(self.value["meta_data"])
164
info_values = TextValueSelect.process_info_value(self.value["info_value"])
165
- text_values = [meta["text"] for meta in meta_values if meta["value"] in info_values]
+ text_values = [
166
+ meta["text"] for value in info_values for meta in meta_values if meta["value"] == value and meta["text"]
167
+ ]
168
text_not_selected_values = [meta["text"] for meta in meta_values if meta["value"] not in info_values]
169
info_not_selected_values = [meta["value"] for meta in meta_values if meta["value"] not in info_values]
170
0 commit comments