mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Correct "no tags" route in tag drop-down (#11142)
We refactored routes and removed /tags/none... instead is should be /tag/none
This commit is contained in:
parent
1ca6434d40
commit
2d4455161b
@ -81,7 +81,7 @@ export default ComboBoxComponent.extend(TagsMixin, {
|
|||||||
}),
|
}),
|
||||||
|
|
||||||
noTagsUrl: computed("firstCategory", "secondCategory", function () {
|
noTagsUrl: computed("firstCategory", "secondCategory", function () {
|
||||||
let url = "/tags";
|
let url = "/tag";
|
||||||
if (this.currentCategory) {
|
if (this.currentCategory) {
|
||||||
url += `/c/${Category.slugFor(this.currentCategory)}/${
|
url += `/c/${Category.slugFor(this.currentCategory)}/${
|
||||||
this.currentCategory.id
|
this.currentCategory.id
|
||||||
|
Loading…
Reference in New Issue
Block a user