Skip to content

Commit

Permalink
Fixes #27965 - Show errors in template import
Browse files Browse the repository at this point in the history
  • Loading branch information
Ondrej Prazak committed Oct 10, 2019
1 parent a9d3bf3 commit b818be5
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -109,8 +109,8 @@ export const templateErrors = template => {

const aggregatedErrors = template => {
const err = { ...template.errors } || {};
if (template.additional_errors) {
err.additional = template.additional_errors;
if (template.additionalErrors) {
err.additional = template.additionalErrors;
}

return err;
Expand Down

0 comments on commit b818be5

Please sign in to comment.