Skip to content

Commit

Permalink
fix(sdk-js/form): fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
GmGamez authored Oct 22, 2021
1 parent 16ef69d commit 17c110f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapps/camunda-bpm-sdk-js/lib/forms/camunda-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ CamundaForm.prototype.renderForm = function(formHtmlSource) {
// extract and validate form element
var formElement = (this.formElement = $('form', this.containerElement));
if (formElement.length !== 1) {
throw new Error('Form must provide exaclty one element <form ..>');
throw new Error('Form must provide exactly one element <form ..>');
}
if (!formElement.attr('name')) {
formElement.attr('name', '$$camForm');
Expand Down

0 comments on commit 17c110f

Please sign in to comment.