A plugin for Strapi Headless CMS that provides navigation / menu builder feature with their possibility to control the audience and different output structure renderers like (flat, tree and RFR - ready for handling by Redux First Router)
This PR fix the problem of entity not being selected correctly in the item modal because formik use a string named "related" but compared of Number "id".
Ticket
https://github.com/VirtusLab-Open-Source/strapi-plugin-navigation/issues/350
Summary
What does this PR do/solve?
This PR fix the problem of entity not being selected correctly in the item modal because formik use a string named "related" but compared of Number "id".
I believe the same problem may still occur in other places, there was almost identical PR merged recently: https://github.com/VirtusLab-Open-Source/strapi-plugin-navigation/pull/344.
Maybe it would be a good idea to parse the content type item
id
toString
as soon as it is fetched. That would require addingin https://github.com/VirtusLab-Open-Source/strapi-plugin-navigation/blob/master/admin/src/pages/DataManagerProvider/index.js#L219.
I don't know the plugin code well enough, and I'm so I decided to add just the "local" fix for now.
Test Plan
@strapi/strapi 4.11.2
strapi-plugin-navigation 2.2.11
Page
with fieldtitle
of typeText
title
inName fields
in navigation plugin settingsPage
entityPage
entity (this was not the case before the fix, nothing was happening when you clickSave
)