Hello everyone. I want to replace tag-chooser on mini-tag-chooser in template search-advanced-options.hbs
I change the lines
{{tag-chooser
id=“search-with-tags”
tags=searchedTerms.tags
allowCreate=false
everyTag=true
unlimitedTagCount=true
onChange=(action “onChangeSearchTermForTags”)
}}
On
{{mini-tag-chooser
id=“search-with-tags”
tags=searchedTerms.tags
allowCreate=false
everyTag=true
unlimitedTagCount=true
onChange=(action “onChangeSearchTermForTags”)
}}
After that, it starts to work incorrectly. I can’t select the desired tag
Please help me solve this problem