From d14e15fb7f83a2d5a6c9f550f7e54906c8a0185c Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Wed, 12 Nov 2025 15:33:00 -0600 Subject: [PATCH] Fixes #354: Route TaggedItem queries to branch schema Added `extras.taggeditem` to `INCLUDE_MODELS` to ensure `TaggedItem` queries are routed to the active branch schema instead of main. This fixes edit forms showing incorrect tag state when tags are added or removed in a branch. --- netbox_branching/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox_branching/constants.py b/netbox_branching/constants.py index 424fea9..6722521 100644 --- a/netbox_branching/constants.py +++ b/netbox_branching/constants.py @@ -21,6 +21,7 @@ INCLUDE_MODELS = ( 'dcim.cablepath', 'extras.cachedvalue', + 'extras.taggeditem', # Fix for issue #354 - tags through model 'tenancy.contactgroupmembership', # Fix for NetBox v4.3.0 )