Skip to content

Commit a822bae

Browse files
authored
Merge pull request #318 from adzhindzhi/uepr-326-issues-after-react-migration
[UEPR-326] Fix issues after react migration
2 parents bf1f3ba + 62ea586 commit a822bae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/scratch-gui/src/components/menu-bar/account-nav.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const AccountNavComponent = ({
3939
styles.userInfo,
4040
className
4141
)}
42-
onMouseUp={onClick}
42+
onClick={onClick}
4343
>
4444
{avatarUrl ? (
4545
<UserAvatar

packages/scratch-gui/src/components/stage-header/stage-header.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ const StageHeaderComponent = function (props) {
169169
<div className={styles.rightSection}>
170170
{manuallySaveThumbnails && (
171171
<Button
172-
aria-label={props.intl.formatMessage(messages.setThumbnail)}
172+
aria-label={intl.formatMessage(messages.setThumbnail)}
173173
className={styles.setThumbnailButton}
174174
onClick={onUpdateThumbnail}
175175
>

0 commit comments

Comments
 (0)