Skip to content

Commit

Permalink
feat: [UEPR-44] exported redux action and added additional class to t…
Browse files Browse the repository at this point in the history
…utorials button
  • Loading branch information
MiroslavDionisiev committed Oct 11, 2024
1 parent a994d4d commit 01f493f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/menu-bar/menu-bar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ class MenuBar extends React.Component {
<div className={styles.fileGroup}>
<div
aria-label={this.props.intl.formatMessage(ariaMessages.tutorials)}
className={classNames(styles.menuBarItem, styles.hoverable)}
className={classNames(styles.menuBarItem, styles.hoverable, 'tutorials-button')}
onClick={this.props.onOpenTipLibrary}
>
<img
Expand Down
4 changes: 3 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {ScratchPaintReducer} from 'scratch-paint';
import {setFullScreen, setPlayer} from './reducers/mode';
import {remixProject} from './reducers/project-state';
import {setAppElement} from 'react-modal';
import {activateDeck} from './reducers/cards.js';

const guiReducers = {
locales: LocalesReducer,
Expand All @@ -27,5 +28,6 @@ export {
localesInitialState,
remixProject,
setFullScreen,
setPlayer
setPlayer,
activateDeck
};

0 comments on commit 01f493f

Please sign in to comment.