Skip to content

Commit

Permalink
Merge pull request #640 from chibicode/patch-1
Browse files Browse the repository at this point in the history
assets.manager can be undefined even when assets is not undefined
  • Loading branch information
Muhammed Thanish authored Dec 5, 2016
2 parents 3a41576 + 3ec0d65 commit eb86b3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/index.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { version } from '../../package.json';
// [ 'static/manager.c6e6350b6eb01fff8bad.bundle.js',
// 'static/manager.c6e6350b6eb01fff8bad.bundle.js.map' ]
const managerUrlsFromAssets = (assets) => {
if (!assets) {
if (!assets || !assets.manager) {
return {
js: 'static/manager.bundle.js',
};
Expand Down

0 comments on commit eb86b3a

Please sign in to comment.