Skip to content

Commit

Permalink
Fixes #7119/BZ1130645: double quote host collection name in search.
Browse files Browse the repository at this point in the history
The host collection search was using single quotes which search
isn't happy with.  This commit changes the host collection bulk
actions to use double quotes.

http://projects.theforeman.org/issues/7119
https://bugzilla.redhat.com/show_bug.cgi?id=1130645
  • Loading branch information
Walden Raines committed Aug 20, 2014
1 parent 1e72dee commit 37df2d9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,26 @@

<ul class="bullet">
<li>
<a translate ng-href="{{ $state.href('content-hosts.bulk-actions.packages') }}?select_all=true&search=host_collection:'{{ hostCollection.name }}'">
<a translate ng-href="{{ $state.href('content-hosts.bulk-actions.packages') }}?select_all=true&search=host_collection:&quot;{{ hostCollection.name }}&quot;">
Package Installation, Removal, and Update
</a>
</li>


<li>
<a translate ng-href="{{ $state.href('content-hosts.bulk-actions.errata.list') }}?select_all=true&search=host_collection:'{{ hostCollection.name }}'">
<a translate ng-href="{{ $state.href('content-hosts.bulk-actions.errata.list') }}?select_all=true&search=host_collection:&quot;{{ hostCollection.name }}&quot;">
Errata Installation
</a>
</li>

<li>
<a translate ng-href="{{ $state.href('content-hosts.bulk-actions.host-collections') }}?select_all=true&search=host_collection:'{{ hostCollection.name }}'">
<a translate ng-href="{{ $state.href('content-hosts.bulk-actions.host-collections') }}?select_all=true&search=host_collection:&quot;{{ hostCollection.name }}&quot;">
Host Collection Membership
</a>
</li>

<li>
<a translate ng-href="{{ $state.href('content-hosts.bulk-actions.environment') }}?select_all=true&search=host_collection:'{{ hostCollection.name }}'">
<a translate ng-href="{{ $state.href('content-hosts.bulk-actions.environment') }}?select_all=true&search=host_collection:&quot;{{ hostCollection.name }}&quot;">
Change assigned Lifecycle Environment or Content View
</a>
</li>
Expand Down

0 comments on commit 37df2d9

Please sign in to comment.