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:
Sam 2020-11-06 10:28:57 +11:00 committed by GitHub
parent 1ca6434d40
commit 2d4455161b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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