mirror of
https://github.com/discourse/discourse.git
synced 2025-04-16 18:09:04 +08: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 () {
|
||||
let url = "/tags";
|
||||
let url = "/tag";
|
||||
if (this.currentCategory) {
|
||||
url += `/c/${Category.slugFor(this.currentCategory)}/${
|
||||
this.currentCategory.id
|
||||
|
Loading…
x
Reference in New Issue
Block a user