Skip to content

Commit

Permalink
fix: update btn not opening Github url
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Jan 6, 2021
1 parent 9205b4a commit 033ae22
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions app/components/title-bar/update-available-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ interface UpdateAvailableButtonProps extends BoxProps {
windowState: WindowActiveState;
}

export const UpdateAvailableButton: FC<UpdateAvailableButtonProps> = ({ windowState }) => {
export const UpdateAvailableButton: FC<UpdateAvailableButtonProps> = props => {
const { windowState, ...rest } = props;
return (
<Flex alignItems="center">
<Flex alignItems="center" {...rest}>
<UpdateArrowIcon color={windowState === 'blurred' ? '#A1A7B3' : 'blue'} />
<Text
textStyle="body.small.medium"
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
"devDependencies": {
"@actions/core": "1.2.6",
"@babel/core": "7.12.10",
"@babel/generator": "7.12.11",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-decorators": "7.12.12",
"@babel/plugin-proposal-do-expressions": "7.12.1",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
semver "^5.4.1"
source-map "^0.5.0"

"@babel/generator@^7.12.10", "@babel/generator@^7.12.11":
"@babel/generator@7.12.11", "@babel/generator@^7.12.10", "@babel/generator@^7.12.11":
version "7.12.11"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.11.tgz#98a7df7b8c358c9a37ab07a24056853016aba3af"
integrity sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==
Expand Down

0 comments on commit 033ae22

Please sign in to comment.