Tags on templates dont update

I have a template, I give it a tag but all my instances in the scene don’t update with that tag nor is there an option in each instance to apply just the new tag override.

Is that expected behaviour?

Thanks

A quick test works for me:

Hmm, Thanks, I think maybe its because I have a template within a template. Its quite confusing.

While we are on the subject. Is this code supposed to work?

this.cutaway_hotspots=this.app.root.findByTag("cutaway_hotspots");
        this.cutaway_hotspots.enabled=false;

Or am I doing something completely wrong?

Find by tag will return an array of results, so you should access its first element if you are looking to access the first entity returned:

this.cutaway_hotspots=this.app.root.findByTag("cutaway_hotspots");
if( this.cutaway_hotspots.length > 0){ 
        this.cutaway_hotspots[0].enabled=false;
}

If you have template in a template then it depends on which template asset you want the changes to be applied on. The parent template or the template that is nested?