I'm currently working on code aimed at generating a string based on the selected value.
this.selectedCategory = selectedvalue.name;
this.filter = '{category:${this.selectedCategory}}';
The content of this.filter
is
whereas I am anticipating the result to be {category:${this.selectedCategory}}
{category:Music}
.