Skip to content

Commit ff50873

Browse files
Merge pull request #634 from Hypnosphi/fix-diff-mode-select
fix: fix diff mode select
2 parents 6a3a404 + 8eeb704 commit ff50873

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/static/components/controls/common-controls.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class ControlButtons extends Component {
7575
size='m'
7676
label="Diff mode"
7777
value={view.diffMode}
78-
handler={actions.changeDiffMode}
78+
handler={diffModeId => actions.setDiffMode({diffModeId})}
7979
options = {Object.values(DiffModes).map((dm) => {
8080
return {value: dm.id, content: dm.title};
8181
})}

lib/static/components/modals/screenshot-accepter/header.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export default class ScreenshotAccepterHeader extends Component {
193193
size="m"
194194
label="Diff mode"
195195
value={view.diffMode}
196-
handler={actions.changeDiffMode}
196+
handler={diffModeId => actions.setDiffMode({diffModeId})}
197197
options = {Object.values(DiffModes).map((dm) => {
198198
return {value: dm.id, content: dm.title};
199199
})}

test/unit/lib/static/components/modals/screenshot-accepter/header.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('<ScreenshotAccepterHeader/>', () => {
1818

1919
const DEFAULT_PROPS = {
2020
view: {diffMode: DiffModes.THREE_UP_SCALED},
21-
actions: {changeDiffMode: sinon.stub().returns({type: 'some-type'})},
21+
actions: {setDiffMode: sinon.stub().returns({type: 'some-type'})},
2222
totalImages: 2,
2323
acceptedImages: 0,
2424
images: [{

0 commit comments

Comments
 (0)