Skip to content

Commit

Permalink
fix: invalid selector
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasnetau committed Sep 21, 2023
1 parent 82242e5 commit a153525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/form-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ function FormBuilder(opts, element, $) {
$stage.prepend(disabledField('prepend'))
}

if (opts.append && !$('.disabled-field.form-.append', d.stage).length) {
if (opts.append && !$('.disabled-field.form-append', d.stage).length) {
cancelArray.push(true)
$stage.append(disabledField('append'))
}
Expand Down

0 comments on commit a153525

Please # to comment.