Skip to content

Commit

Permalink
fix: fix demo project after breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
mathuo committed Feb 22, 2022
1 parent 5dbbdce commit e0bcecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dockview-demo/src/services/widgets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ export const SidebarPart = (props: { id: string }) => {
const onDidDrop = (event: PaneviewDropEvent) => {
const data = event.getData();

const containerData = event.event.dataTransfer.getData(
const containerData = event.nativeEvent.dataTransfer.getData(
'application/json'
);

Expand Down

0 comments on commit e0bcecf

Please sign in to comment.