Fix JS linting error
This commit is contained in:
parent
57847e6930
commit
2199906dca
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ class BindInOut {
|
|||
static init(anIn, anOut) {
|
||||
const out = anOut || document.querySelector(`*[data-bind-out="${anIn.dataset.bindIn}"]`);
|
||||
|
||||
if (!out) return;
|
||||
if (!out) return null;
|
||||
|
||||
const bindInOut = new BindInOut(anIn, out);
|
||||
|
||||
|
|
Loading…
Reference in a new issue