Skip to content

Commit

Permalink
don't die silently, raise rendering exceptions
Browse files Browse the repository at this point in the history
mnzaki committed May 28, 2018
1 parent 3ee62c8 commit 269cb94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/directives/sf-schema.directive.js
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ sfSelect, sfBuilder) {
scope.render(resolved, form);
})
.catch((err) => {
new Error(err);
throw new Error(err);
});
};

0 comments on commit 269cb94

Please sign in to comment.