Navigation Menu

Skip to content

Commit

Permalink
Fix exception when assigning actions to policy
Browse files Browse the repository at this point in the history
  • Loading branch information
bmclaughlin committed Sep 26, 2017
1 parent 46962ba commit 674c244
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/views/miq_policy/_event_details.html.haml
Expand Up @@ -56,7 +56,7 @@
"data-method" => :post,
"data-miq_sparkle_on" => true,
"data-miq_sparkle_off" => true,
"data-click_url" => {:url => url_for_only_path(:action => 'event_edit',
"data-click_url" => {:url => url_for(:action => 'event_edit',
:button => action,
:id => @event)}.to_json}
%i.fa.fa-lg.hidden-xs.hidden-sm{:class => arrow_style}
Expand Down Expand Up @@ -87,7 +87,7 @@
"data-method" => :post,
"data-miq_sparkle_on" => true,
"data-miq_sparkle_off" => true,
"data-click_url" => {:url => url_for_only_path(:action => 'event_edit',
"data-click_url" => {:url => url_for(:action => 'event_edit',
:button => action,
:id => @event)}.to_json}
- if %w(A S).include?(arrow_style)
Expand Down Expand Up @@ -151,7 +151,7 @@
"data-method" => :post,
"data-miq_sparkle_on" => true,
"data-miq_sparkle_off" => true,
"data-click_url" => {:url => url_for_only_path(:action => 'event_edit',
"data-click_url" => {:url => url_for(:action => 'event_edit',
:button => action,
:id => @event)}.to_json}
%i.fa.fa-lg.hidden-xs.hidden-sm{:class => arrow_style}
Expand Down Expand Up @@ -183,7 +183,7 @@
"data-method" => :post,
"data-miq_sparkle_on" => true,
"data-miq_sparkle_off" => true,
"data-click_url" => {:url => url_for_only_path(:action => 'event_edit',
"data-click_url" => {:url => url_for(:action => 'event_edit',
:button => action,
:id => @event)}.to_json}
- if %w(A S).include?(arrow_style)
Expand Down

0 comments on commit 674c244

Please sign in to comment.