DEV: Remove duplicate filterable option in tag-drop (#13640)

Has no effect and raises a console deprecation warning.
This commit is contained in:
Penar Musaraj
2021-07-05 14:42:17 -04:00
committed by GitHub
parent da41bc9f22
commit 48f36d43eb

View File

@@ -1,4 +1,4 @@
import { equal, gte, readOnly } from "@ember/object/computed";
import { equal, readOnly } from "@ember/object/computed";
import { i18n, setting } from "discourse/lib/computed";
import ComboBoxComponent from "select-kit/components/combo-box";
import DiscourseURL, { getCategoryAndTagUrl } from "discourse/lib/url";
@@ -43,8 +43,6 @@ export default ComboBoxComponent.extend(TagsMixin, {
noTagsSelected: equal("tagId", NONE_TAG_ID),
filterable: gte("content.length", 15),
init() {
this._super(...arguments);