Skip to content

Commit

Permalink
Merge pull request #7121 from mzazrivec/allow_to_select_full_hour_in_…
Browse files Browse the repository at this point in the history
…dialog_sample_screen

Allow to select whole hour in dialog sample screen

(cherry picked from commit 6967ad8)

https://bugzilla.redhat.com/show_bug.cgi?id=1706848
  • Loading branch information
himdel authored and simaishi committed Aug 20, 2020
1 parent b0ffcaf commit 1252337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/miq_ae_customization/_dialog_sample.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
 
= select_tag("start_hour", options_for_select(Array.new(24) { |i| i }, time.hour))
\:
= select_tag("start_min", options_for_select(Array.new(12) { |i| i * 5 }, time.min))
= select_tag("start_min", options_for_select(Array.new(60) { |i| i }, time.min))

- when "DialogFieldTextAreaBox"
= text_area_tag(field.id, field.sample_text, :size => "50x6", :disabled => true)
Expand Down

0 comments on commit 1252337

Please sign in to comment.