diff --git a/src/components/DashboardPluginWrapper/DashboardPluginWrapper.js b/src/components/DashboardPluginWrapper/DashboardPluginWrapper.js index 52796cbcf..74c611161 100644 --- a/src/components/DashboardPluginWrapper/DashboardPluginWrapper.js +++ b/src/components/DashboardPluginWrapper/DashboardPluginWrapper.js @@ -88,12 +88,13 @@ export const DashboardPluginWrapper = ({ } DashboardPluginWrapper.defaultProps = { + isParentCached: false, onInstallationStatusChange: Function.prototype, } DashboardPluginWrapper.propTypes = { - cacheId: PropTypes.string.isRequired, - children: PropTypes.func.isRequired, - isParentCached: PropTypes.bool.isRequired, + cacheId: PropTypes.string, + children: PropTypes.func, + isParentCached: PropTypes.bool, onInstallationStatusChange: PropTypes.func, }