diff --git a/Changelog.md b/Changelog.md index 6e7261eaf..bbcab03c5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -104,6 +104,7 @@ This is disabled by default since it requires the installation of additional pac * Fix code overflow in SPV and improve styling for code tags [#5422](https://github.com/diaspora/diaspora/pull/5422) * Correctly validate if local recipients actually want to receive a conversation [#5449](https://github.com/diaspora/diaspora/pull/5449) * Improve consistency of poll answer ordering [#5471](https://github.com/diaspora/diaspora/pull/5471) +* Fix broken aspect selectbox on asynchronous search results [#5488](https://github.com/diaspora/diaspora/pull/5488) ## Features * Don't pull jQuery from a CDN by default [#5105](https://github.com/diaspora/diaspora/pull/5105) diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb index 030e2cd8c..e788c8529 100644 --- a/app/controllers/people_controller.rb +++ b/app/controllers/people_controller.rb @@ -7,7 +7,7 @@ class PeopleController < ApplicationController before_action :find_person, only: [:show, :stream, :hovercard] layout ->(c){ request.format == :mobile ? "application" : "with_header_with_footer" } - use_bootstrap_for :index, :show, :contacts + use_bootstrap_for :index, :show, :contacts, :refresh_search respond_to :html, :except => [:tag_index] respond_to :json, :only => [:index, :show]