Skip to content

Commit

Permalink
fix: allow bind:this with dynamic type on inputs
Browse files Browse the repository at this point in the history
fixes #9709
  • Loading branch information
dummdidumm committed Nov 30, 2023
1 parent bde42d5 commit 85a3215
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/great-icons-retire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'svelte': patch
---

fix: allow `bind:this` with dynamic type on inputs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export const validation = {
);
}

if (parent.name === 'input') {
if (parent.name === 'input' && node.name !== 'this') {
const type = /** @type {import('#compiler').Attribute | undefined} */ (
parent.attributes.find((a) => a.type === 'Attribute' && a.name === 'type')
);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<script>
let foo;
let inputType;
</script>

<input bind:this={foo} type={inputType}>

0 comments on commit 85a3215

Please sign in to comment.