Closed
Description
Describe the bug
In chrome dev tools, I have this error when I drag and drop:
To Reproduce
html
<div style="width: 100vw; height: 100vh;">
<as-split direction="vertical" (dragEnd)="dragEnd($event)">
<as-split-area [size]="sizeTop">
<h1>TEST 1</h1>
</as-split-area>
<as-split-area [size]="sizeBottom">
<h1>TEST 2</h1>
</as-split-area>
</as-split>
</div>
typescript
dragEnd({ sizes }: any) {
console.log(sizes);
}
Is it normal? Thanks