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
  • Loading branch information
himdel authored Jun 15, 2020
2 parents cd41c79 + 3f7eddf commit 6967ad8
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 6967ad8

Please sign in to comment.