Skip to content

Commit 2f5a234

Browse files
committed
Don't disable lock button for non redux connections.
1 parent c8cf847 commit 2f5a234

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/redux-devtools-app/src/components/TopButtons.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,7 @@ export default class TopButtons extends Component<Props> {
5252
<Toolbar borderPosition="bottom">
5353
{features.pause && <RecordButton paused={isPaused} />}
5454
{features.persist && <PersistButton />}
55-
{features.lock && (
56-
<LockButton locked={isLocked} disabled={options.lib !== 'redux'} />
57-
)}
55+
{features.lock && <LockButton locked={isLocked} />}
5856
<Divider />
5957
<Button
6058
title="Reset to the state you created the store with"

0 commit comments

Comments
 (0)