| Index: client/html/src/ElementWrappingImplementation.dart
|
| diff --git a/client/html/src/ElementWrappingImplementation.dart b/client/html/src/ElementWrappingImplementation.dart
|
| index b5e3a752cc0b4876a31cf8f186656c85c7cd598f..387225730ee9710fb05b59cc8287588fd5f48685 100644
|
| --- a/client/html/src/ElementWrappingImplementation.dart
|
| +++ b/client/html/src/ElementWrappingImplementation.dart
|
| @@ -518,7 +518,7 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
|
| parentTag = _CUSTOM_PARENT_TAG_MAP[tag];
|
| }
|
| }
|
| - final temp = dom.document.createElement(parentTag);
|
| + dom.HTMLElement temp = dom.document.createElement(parentTag);
|
| temp.innerHTML = html;
|
|
|
| if (temp.childElementCount == 1) {
|
|
|