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 7fcec09 commit 9e6926aCopy full SHA for 9e6926a
app/views/miq_request/_request_dialog_details.html.haml
@@ -35,7 +35,10 @@
35
36
- when 'DialogFieldTagControl'
37
- value = wf.value(field.name) || ''
38
- - classifications = Classification.where(:id => value).pluck(:description)
+ - classifications = []
39
+ - value.each do |tag|
40
+ - classification = Classification.find_by(:id => tag.split('::').second)
41
+ - classifications.push(classification.description) if classification
42
- if classifications.empty?
43
= h('')
44
-else
0 commit comments