mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-20 13:30:53 +03:00
Don't disable lock button for non redux connections.
This commit is contained in:
parent
c8cf847681
commit
2f5a234638
|
@ -52,9 +52,7 @@ export default class TopButtons extends Component<Props> {
|
||||||
<Toolbar borderPosition="bottom">
|
<Toolbar borderPosition="bottom">
|
||||||
{features.pause && <RecordButton paused={isPaused} />}
|
{features.pause && <RecordButton paused={isPaused} />}
|
||||||
{features.persist && <PersistButton />}
|
{features.persist && <PersistButton />}
|
||||||
{features.lock && (
|
{features.lock && <LockButton locked={isLocked} />}
|
||||||
<LockButton locked={isLocked} disabled={options.lib !== 'redux'} />
|
|
||||||
)}
|
|
||||||
<Divider />
|
<Divider />
|
||||||
<Button
|
<Button
|
||||||
title="Reset to the state you created the store with"
|
title="Reset to the state you created the store with"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user