File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/plugins/moreButtonPlugin Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export default function Button(getDeps, props) {
3131 return (
3232 < >
3333 < div { ...ref . current . btnPropsGenerator ( onClick , btnRef , open ) } >
34- < IconComponent instance = { props . instance } />
34+ < IconComponent instance = { props . instance . userProxy } />
3535 </ div >
3636 { open ? < Popper { ...props } TabsComponent = { ref . current . TabsComponent } btnRef = { btnRef } /> : null }
3737 </ >
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
22import PropTypes from 'prop-types' ;
33export default function MoreButtonPlugin_iconComponent ( props ) {
44 const style = { } ;
5- if ( props . instance . optionsManager . options . direction === 'rtl' ) {
5+ if ( props . instance . getOption ( ' direction' ) === 'rtl' ) {
66 style . transform = 'rotate(180deg)' ;
77 }
88 return (
You can’t perform that action at this time.
0 commit comments