backdrop-contrib / entityreference_migration

Migrate References module fields (node and user references) to Entity Reference fields.
GNU General Public License v2.0
0 stars 1 forks source link

Migrated Term References don't update taxonomy_index #5

Open kswan opened 3 months ago

kswan commented 3 months ago

Term Reference fields that are migrated to Entity Reference fields targeting a Taxonomy Term don't update the taxonomy_index table when nodes are created or edited.

The field appears to show that this should be happening. image

I found the reason is a section of the Field Instance config file is missing.

    "settings": {
        "behaviors": {
            "taxonomy": {
                "status": true
            }
        },
        "user_register_form": false
    }

The "behaviors" setting was missing after the migration.

herbdool commented 3 months ago

Thanks for reporting @kswan. Would you be able to create a PR to add the behavior?