strapi-plugin-import-export-content
strapi-plugin-import-export-content copied to clipboard
fix import fails if value is null #38
During Import (After Analyze completed), some of the value needs to be imported is null. since null is "object" type on the line 8 of contentChecker.js file. This is true and the next command value.id cause TypeError TypeError: Cannot read property 'id' of null
And the whole import stops. Added another if to handle if the value is null.