Skip to content

Commit 01f493f

Browse files
feat: [UEPR-44] exported redux action and added additional class to tutorials button
1 parent a994d4d commit 01f493f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/menu-bar/menu-bar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ class MenuBar extends React.Component {
690690
<div className={styles.fileGroup}>
691691
<div
692692
aria-label={this.props.intl.formatMessage(ariaMessages.tutorials)}
693-
className={classNames(styles.menuBarItem, styles.hoverable)}
693+
className={classNames(styles.menuBarItem, styles.hoverable, 'tutorials-button')}
694694
onClick={this.props.onOpenTipLibrary}
695695
>
696696
<img

src/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {ScratchPaintReducer} from 'scratch-paint';
66
import {setFullScreen, setPlayer} from './reducers/mode';
77
import {remixProject} from './reducers/project-state';
88
import {setAppElement} from 'react-modal';
9+
import {activateDeck} from './reducers/cards.js';
910

1011
const guiReducers = {
1112
locales: LocalesReducer,
@@ -27,5 +28,6 @@ export {
2728
localesInitialState,
2829
remixProject,
2930
setFullScreen,
30-
setPlayer
31+
setPlayer,
32+
activateDeck
3133
};

0 commit comments

Comments
 (0)