Compare strings in component attributes

This commit is contained in:
Talia 2023-12-27 18:49:33 +01:00
parent 7febebce65
commit b7bb093a0c
Signed by: darkwiiplayer
GPG Key ID: 7808674088232B3E
1 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,7 @@ const attributeObserver = new MutationObserver(mutations => {
for (const {type, target, attributeName: name} of mutations) {
if (type == "attributes") {
const next = target.getAttribute(name)
if (target.state.proxy[name] !== next)
if (String(target.state.proxy[name]) !== next)
target.state.proxy[name] = next
}
}
@ -221,7 +221,7 @@ export const component = (generator, name) => {
this.state = new State(Object.fromEntries([...this.attributes].map(attribute => [attribute.name, attribute.value])))
this.state.addEventListener("change", event => {
for (const [name, value] of event.changes) {
if (this.getAttribute(name) !== value)
if (this.getAttribute(name) !== String(value))
this.setAttribute(name, value)
}
})