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) {
31
31
return (
32
32
< >
33
33
< div { ...ref . current . btnPropsGenerator ( onClick , btnRef , open ) } >
34
- < IconComponent instance = { props . instance } />
34
+ < IconComponent instance = { props . instance . userProxy } />
35
35
</ div >
36
36
{ open ? < Popper { ...props } TabsComponent = { ref . current . TabsComponent } btnRef = { btnRef } /> : null }
37
37
</ >
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
2
2
import PropTypes from 'prop-types' ;
3
3
export default function MoreButtonPlugin_iconComponent ( props ) {
4
4
const style = { } ;
5
- if ( props . instance . optionsManager . options . direction === 'rtl' ) {
5
+ if ( props . instance . getOption ( ' direction' ) === 'rtl' ) {
6
6
style . transform = 'rotate(180deg)' ;
7
7
}
8
8
return (
You can’t perform that action at this time.
0 commit comments