mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-04 13:34:46 +00:00
Fix JavaScript style error causing CI failures
The Drone JS style checker was complaining about the bad quotes.
This commit is contained in:
parent
8e00899233
commit
b85d6dab3f
1 changed files with 2 additions and 2 deletions
|
|
@ -237,9 +237,9 @@ function InlinePanel(opts) {
|
|||
var addButton = $('#' + opts.formsetPrefix + '-ADD');
|
||||
|
||||
if (forms.length >= opts.maxForms) {
|
||||
addButton.addClass("disabled");
|
||||
addButton.addClass('disabled');
|
||||
} else {
|
||||
addButton.removeClass("disabled");
|
||||
addButton.removeClass('disabled');
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue