Fixes: U4-3655 Clicking on recycle bin in media section redirects you back to the content tree

This commit is contained in:
Shannon
2013-11-25 14:45:14 +11:00
parent 99e0a1f11b
commit 59599efab6
2 changed files with 10 additions and 6 deletions

View File

@@ -111,7 +111,11 @@ namespace Umbraco.Web.Trees
ui.GetText("general", "recycleBin"),
"icon-trash",
RecycleBinSmells,
queryStrings.GetValue<string>("application") + TreeAlias.EnsureStartsWith('/') + "/recyclebin"));
//TODO: This would be nice to enable so we can have a nice recyclebin view, see the NOTE: in the routes.js angular file
// for the time being we'll just load the dashboard of the section.
//queryStrings.GetValue<string>("application") + TreeAlias.EnsureStartsWith('/') + "/recyclebin"));
queryStrings.GetValue<string>("application")));
}
return nodes;