Skip to content

Commit

Permalink
Fixed action order field name to be consistent with observer
Browse files Browse the repository at this point in the history
Backport of ManageIQ#4488 broke the observer for Action order drop down. In ManageIQ#2482 use of compressed ids was removed from https://github.com/ManageIQ/manageiq-ui-classic/pull/2482/files#diff-10a8b10a2fee4a8ed7444f35479d9444L66 causing the observer and field name to not match.

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1615853
  • Loading branch information
h-kataria committed Oct 29, 2018
1 parent 6669028 commit 8642fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/catalog/_form_resources_info.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
- if @edit[:new][:selected_resources].length <= 1
= h(@edit[:new][:selected_resources].length)
- else
= select_tag("gidx_#{to_cid(sr[:id])}",
= select_tag("gidx_#{sr[:id]}",
options_for_select((1..@edit[:new][:rsc_groups].length).to_a, (i + 1).to_s),
"data-miq_sparkle_on" => true)
:javascript
Expand Down

0 comments on commit 8642fca

Please sign in to comment.