大家好。我想在模板 search-advanced-options.hbs 中将 tag-chooser 替换为 mini-tag-chooser。
我修改了以下代码行:
{{tag-chooser
id=“search-with-tags”
tags=searchedTerms.tags
allowCreate=false
everyTag=true
unlimitedTagCount=true
onChange=(action “onChangeSearchTermForTags”)
}}
改为:
{{mini-tag-chooser
id=“search-with-tags”
tags=searchedTerms.tags
allowCreate=false
everyTag=true
unlimitedTagCount=true
onChange=(action “onChangeSearchTermForTags”)
}}
之后,功能开始出现问题。我无法选择所需的标签。
请帮忙解决这个问题。