Skip to content

Commit e27b5b6

Browse files
authoredJun 8, 2021
fix(item): using multiple items with inputs no longer results in console warnings (#23429)
resolves #23427
1 parent 60bedb5 commit e27b5b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/src/components/item/item.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class Item implements ComponentInterface, AnchorInterface, ButtonInterfac
173173
}
174174

175175
componentDidLoad() {
176-
this.setMultipleInputs();
176+
raf(() => this.setMultipleInputs());
177177
}
178178

179179
// If the item contains multiple clickable elements and/or inputs, then the item

0 commit comments

Comments
 (0)
Please sign in to comment.