diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/util/html.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/html.js b/src/util/html.js index 9fc94a1e..7bce9ae8 100644 --- a/src/util/html.js +++ b/src/util/html.js @@ -1844,7 +1844,7 @@ export const isAttributesAdditionSinglet = (value) => { } if (Array.isArray(value) && value.length === 1) { - if (Object.hasOwn(value[0]), blessAttributes) { + if (Object.hasOwn(value[0], blessAttributes)) { return true; } } |