1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

fixed typo in the useDragHandle attribute for the folder list

This commit is contained in:
Matus Benko
2017-09-08 00:59:38 +02:00
parent c34dd462b6
commit 5c2d7e2d2a

View File

@@ -68,7 +68,12 @@ class SortableFolderListComponent extends React.Component {
const SortableFolderList = SortableContainer(StyledFolderList)
return (
<SortableFolderList helperClass='sortableItemHelper' onSortEnd={this.onSortEnd} userDragHandle={true} {...this.props} />
<SortableFolderList
helperClass='sortableItemHelper'
onSortEnd={this.onSortEnd}
useDragHandle
{...this.props}
/>
)
}
}