Skip to content

Commit

Permalink
Second Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
devmtm committed Nov 4, 2018
1 parent 5722ea4 commit 09aca90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/js/nova-custom-views.js
Original file line number Diff line number Diff line change
Expand Up @@ -11079,7 +11079,7 @@ Nova.booting(function (Vue, router) {
if (globalViews.includes(to.name)) {
customComponent = window.config["novaCustom" + to.name.charAt(0).toUpperCase() + to.name.slice(1)];
} else {
customComponent = resourceCustomViews[to.name] ? resourceCustomViews[to.name]['name'] : null;
customComponent = resourceCustomViews && resourceCustomViews[to.name] ? resourceCustomViews[to.name]['name'] : null;
}
if (customComponent && Vue.options.components[customComponent]) {
next({
Expand Down

0 comments on commit 09aca90

Please sign in to comment.