mirror of
https://github.com/discourse/discourse.git
synced 2025-06-06 02:44:39 +08:00
Lots of bugfixes
BUGFIX: navigation bar should always activate the right tab (even when diging into a top period) BUGFIX: /top pages titles BUGFIX: no "edit category" button on /top page after visiting a category BUGFIX: properly hide category columns when there is no children category (on both filter + top pages) BUGFIX: promises not caught when scrolling down a topic list to load more of them BUGFIX: CSS on category dropdowns Updated `top_menu` i18n with available filters
This commit is contained in:
@ -203,14 +203,12 @@ Discourse::Application.routes.draw do
|
||||
post "category/:category_id/move" => "categories#move", as: "category_move"
|
||||
get "category/:category.rss" => "list#category_feed", format: :rss, as: "category_feed"
|
||||
get "category/:category" => "list#category"
|
||||
get "category/:category/more" => "list#category"
|
||||
get "category/:category/none" => "list#category_none"
|
||||
get "category/:category/none/more" => "list#category_none"
|
||||
get "category/:parent_category/:category" => "list#category"
|
||||
get "category/:parent_category/:category/more" => "list#category"
|
||||
|
||||
get "top" => "list#top_lists"
|
||||
get "category/:category/l/top" => "list#top_lists"
|
||||
get "category/:category/none/l/top" => "list#top_lists"
|
||||
get "category/:parent_category/:category/l/top" => "list#top_lists"
|
||||
|
||||
TopTopic.periods.each do |period|
|
||||
|
Reference in New Issue
Block a user