Commit 08b09b87bc7839eb538ef98427a9aec71daea2ab

Authored by Luciano Prestes
Committed by Álvaro Fernando Matos de Souza
1 parent fad092cb

Unselect all radio buttons of software_search when search by only_softwares

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
lib/ext/search_controller.rb
... ... @@ -65,6 +65,7 @@ class SearchController
65 65 if params[:only_softwares]
66 66 params[:only_softwares].collect!{ |software_name| software_name.to_slug }
67 67 filtered_software_list = SoftwareInfo.all.select{ |s| params[:only_softwares].include?(s.identifier) }
  68 + @public_software_selected = false
68 69 end
69 70  
70 71 category_ids = get_filter_category_ids
... ...