Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit 4ea2a4e

Browse files
authored
Merge pull request jquense#352 from martinnov92/master
Use withDragAndDrop addon without DnDContext
2 parents a3d46cd + 1427760 commit 4ea2a4e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/addons/dragAndDrop/index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,9 @@ export default function withDragAndDrop(Calendar, {
101101
endAccessor: accessor
102102
}
103103

104-
return DragDropContext(backend)(DragAndDropCalendar);
104+
if (backend === false) {
105+
return DragAndDropCalendar;
106+
} else {
107+
return DragDropContext(backend)(DragAndDropCalendar);
108+
}
105109
}

0 commit comments

Comments
 (0)