core-app-worona
Advanced tools
Comparing version 1.4.0 to 1.4.1
{ | ||
"name": "core-app-worona", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "Core Package of Worona App", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -35,4 +35,4 @@ /* eslint-disable no-constant-condition */ | ||
} | ||
yield call(packageActivated, pkg.name); | ||
yield put(actions.packageLoadSucceed({ pkg })); | ||
yield call(packageActivated, pkg.name); | ||
} catch (error) { | ||
@@ -39,0 +39,0 @@ yield put(actions.packageLoadFailed({ error, pkg })); |
@@ -25,3 +25,3 @@ /* eslint-disable react/prefer-stateless-function, react/no-multi-comp, react/prop-types | ||
class Entry extends React.Component { | ||
class EntryClass extends React.Component { | ||
render() { | ||
@@ -37,3 +37,4 @@ try { | ||
} | ||
Entry.propTypes = { component: React.PropTypes.string }; | ||
EntryClass.propTypes = { component: React.PropTypes.string }; | ||
const Entry = connect(mapStateToProps)(EntryClass); | ||
@@ -40,0 +41,0 @@ class Content extends React.Component { |
61057
1249