Skip to content

Commit

Permalink
system groups - minor mods for pull request comments
Browse files Browse the repository at this point in the history
this commit contains a few minor mods to address comments received
during pull request
  • Loading branch information
bbuckingham committed May 23, 2012
1 parent c0b6c5e commit f2d7346
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/app/controllers/system_errata_controller.rb
Expand Up @@ -68,7 +68,6 @@ def install
render :text => task.task_status.uuid
rescue Exception => error
errors error
Rails.logger.error error.backtrace.join("\n")
render :text => error, :status => :bad_request
end

Expand Down
1 change: 0 additions & 1 deletion src/app/controllers/system_group_errata_controller.rb
Expand Up @@ -61,7 +61,6 @@ def install
render :text => job.pulp_id
rescue Exception => error
errors error
Rails.logger.error error.backtrace.join("\n")
render :text => error, :status => :bad_request
end

Expand Down
8 changes: 4 additions & 4 deletions src/app/views/activation_keys/_system_groups.html.haml
@@ -1,14 +1,14 @@
= content_for :title do
= content_for(:title) do
#{@activation_key.name}

= content_for :remove_item do
= content_for(:remove_item) do
- if editable
= link_to _("Remove Activation Key"), activation_key_path(@activation_key.id), :confirm => _('Are you sure?'), :method => :delete, :class=>"remove_item", :remote=>true

= content_for :navigation do
= content_for(:navigation) do
= render_menu(1..2, activation_keys_navigation)

= content_for :content do
= content_for(:content) do
#system_groups
%table
%thead
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/systems/_system_groups.html.haml
@@ -1,6 +1,6 @@
= render :partial => "system_tupane_header_nav"

= content_for :content do
= content_for(:content) do
#system_groups
%table
%thead
Expand Down

0 comments on commit f2d7346

Please sign in to comment.