mirror of
https://github.com/mue/mue.git
synced 2026-07-13 04:02:32 +02:00
fix: no animations setting not working on some things
This commit is contained in:
@@ -24,9 +24,9 @@ const SortableItem = sortableElement(({ value }) => (
|
||||
</li>
|
||||
));
|
||||
|
||||
const SortableContainer = sortableContainer(({ children }) => {
|
||||
return <ul className='sortablecontainer'>{children}</ul>;
|
||||
});
|
||||
const SortableContainer = sortableContainer(({ children }) => (
|
||||
<ul className='sortablecontainer'>{children}</ul>
|
||||
));
|
||||
|
||||
export default class OrderSettings extends PureComponent {
|
||||
constructor() {
|
||||
|
||||
Reference in New Issue
Block a user