fix: remove unnecessary update assignments (#13113)

Fixes #13111
pull/13127/head
Paolo Ricciuti 2 weeks ago committed by GitHub
parent 194570dc70
commit 71c1227513
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,5 @@
---
'svelte': patch
---
fix: remove unnecessary update assignments

@ -248,8 +248,8 @@ export function RegularElement(node, context) {
: `="${value === true ? '' : escape_html(value, true)}"`
}`
);
continue;
}
continue;
}
const is = is_custom_element

@ -0,0 +1,6 @@
import { ok, test } from '../../test';
import { flushSync } from 'svelte';
export default test({
html: `<div></div><div></div>`
});
Loading…
Cancel
Save