mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-25 11:03:57 +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">
|
||||
{features.pause && <RecordButton paused={isPaused} />}
|
||||
{features.persist && <PersistButton />}
|
||||
{features.lock && (
|
||||
<LockButton locked={isLocked} disabled={options.lib !== 'redux'} />
|
||||
)}
|
||||
{features.lock && <LockButton locked={isLocked} />}
|
||||
<Divider />
|
||||
<Button
|
||||
title="Reset to the state you created the store with"
|
||||
|
|
Loading…
Reference in New Issue
Block a user