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…
Reference in New Issue