mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-14 02:06:29 +00:00
fixed typo in the useDragHandle attribute for the folder list
This commit is contained in:
@@ -68,7 +68,12 @@ class SortableFolderListComponent extends React.Component {
|
|||||||
const SortableFolderList = SortableContainer(StyledFolderList)
|
const SortableFolderList = SortableContainer(StyledFolderList)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SortableFolderList helperClass='sortableItemHelper' onSortEnd={this.onSortEnd} userDragHandle={true} {...this.props} />
|
<SortableFolderList
|
||||||
|
helperClass='sortableItemHelper'
|
||||||
|
onSortEnd={this.onSortEnd}
|
||||||
|
useDragHandle
|
||||||
|
{...this.props}
|
||||||
|
/>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user