We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f5a234 commit f019024Copy full SHA for f019024
packages/redux-devtools-app/src/components/buttons/LockButton.tsx
@@ -8,7 +8,6 @@ import { Dispatch } from 'redux';
8
type DispatchProps = ReturnType<typeof mapDispatchToProps>;
9
interface OwnProps {
10
locked: boolean | undefined;
11
- disabled: boolean;
12
}
13
type Props = DispatchProps & OwnProps;
14
@@ -21,7 +20,6 @@ class LockButton extends Component<Props> {
21
20
return (
22
<Button
23
tooltipPosition="bottom"
24
- disabled={this.props.disabled}
25
mark={this.props.locked && 'base0D'}
26
title={this.props.locked ? 'Unlock changes' : 'Lock changes'}
27
onClick={this.props.lockChanges}
0 commit comments