FIX: TagDrop uses currentCategory now (#12786)

This commit is contained in:
Jarek Radosz 2021-04-21 21:46:52 +02:00 committed by GitHub
parent b9b4d2485b
commit 2dfa1a267e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 10 deletions

View File

@ -11,15 +11,11 @@ import { set } from "@ember/object";
function initTags(context) { function initTags(context) {
const categories = context.site.categoriesList; const categories = context.site.categoriesList;
const parentCategory = categories.findBy("id", 2); const category = categories.findBy("id", 2);
const childCategories = categories.filter(
(c) => c.parentCategory === parentCategory
);
// top_tags // top_tags
context.setProperties({ context.setProperties({
firstCategory: parentCategory, currentCategory: category,
secondCategory: childCategories.firstObject,
tagId: "jeff", tagId: "jeff",
}); });
} }
@ -55,8 +51,7 @@ discourseModule(
componentTest("default", { componentTest("default", {
template: hbs` template: hbs`
{{tag-drop {{tag-drop
firstCategory=firstCategory currentCategory=currentCategory
secondCategory=secondCategory
tagId=tagId tagId=tagId
options=(hash options=(hash
tagId=tagId tagId=tagId

View File

@ -115,8 +115,7 @@ export default ComboBoxComponent.extend(TagsMixin, {
}), }),
topTags: computed( topTags: computed(
"firstCategory", "currentCategory",
"secondCategory",
"site.category_top_tags.[]", "site.category_top_tags.[]",
"site.top_tags.[]", "site.top_tags.[]",
function () { function () {