From 2d4455161bcb4cce19de05ba24fc09c45df62a7a Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 6 Nov 2020 10:28:57 +1100 Subject: [PATCH] FIX: Correct "no tags" route in tag drop-down (#11142) We refactored routes and removed /tags/none... instead is should be /tag/none --- app/assets/javascripts/select-kit/addon/components/tag-drop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/select-kit/addon/components/tag-drop.js b/app/assets/javascripts/select-kit/addon/components/tag-drop.js index af12e9b97f5..e2244b07191 100644 --- a/app/assets/javascripts/select-kit/addon/components/tag-drop.js +++ b/app/assets/javascripts/select-kit/addon/components/tag-drop.js @@ -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