Skip to content

Commit 3709500

Browse files
committed
Fix lint
1 parent cec3a91 commit 3709500

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

war/src/main/webapp/scripts/hudson-behavior.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2302,7 +2302,7 @@ function ensureVisible(e) {
23022302
function findFormParent(e, form, isStatic) {
23032303
isStatic = isStatic || false;
23042304

2305-
const originalElement = e
2305+
const originalElement = e;
23062306

23072307
if (form == null) {
23082308
// caller can pass in null to have this method compute the owning form
@@ -2320,7 +2320,10 @@ function findFormParent(e, form, isStatic) {
23202320
}
23212321

23222322
if (!e) {
2323-
console.warn('findFormParent: reached document root without finding form', originalElement);
2323+
console.warn(
2324+
"findFormParent: reached document root without finding form",
2325+
originalElement,
2326+
);
23242327
return null;
23252328
}
23262329

0 commit comments

Comments
 (0)