Skip to content

Commit

Permalink
Allow to select whole hour in dialog sample screen
Browse files Browse the repository at this point in the history
  • Loading branch information
mzazrivec committed Jun 15, 2020
1 parent cd41c79 commit 3f7eddf
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 3f7eddf

Please sign in to comment.