Is it possible to pass variable for object key in blaze spacebars?
Example:
{{#each groups}}
<div class="category-card">
<div class="category-card-left-part">
<span class="pl-2 get-group-name">{{groupName.getCustomName}}</span>
</div>
</div>
{{/each}}
Template.menuWeb.helpers({
getCustomName: () => {
return "some_key_name";
},
});