mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-18 04:20:45 +03:00
fix(LogMonitor): allow a string for the theme prop
This commit is contained in:
parent
ef559a4848
commit
c5165b1bce
|
@ -55,7 +55,10 @@ export default class LogMonitor extends Component {
|
||||||
setMonitorState: PropTypes.func.isRequired,
|
setMonitorState: PropTypes.func.isRequired,
|
||||||
select: PropTypes.func.isRequired,
|
select: PropTypes.func.isRequired,
|
||||||
visibleOnLoad: PropTypes.bool,
|
visibleOnLoad: PropTypes.bool,
|
||||||
theme: PropTypes.object
|
theme: PropTypes.oneOfType([
|
||||||
|
PropTypes.object,
|
||||||
|
PropTypes.string
|
||||||
|
])
|
||||||
};
|
};
|
||||||
|
|
||||||
static defaultProps = {
|
static defaultProps = {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user