8000 fix: compilation issues in production and CI environment variable · UWB-ACM/uwbacm-site@c2586ae · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c2586ae

Browse files
committed
fix: compilation issues in production and CI environment variable
1 parent 7762406 commit c2586ae

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ deploy:
1515
local_dir: 'build/'
1616
provider: pages
1717
skip-cleanup: true
18-
github-token: $GITHUB_TOKEN
18+
github-token: $GH_TOKEN
1919
keep-history: true
2020
on:
2121
branch: master

src/pages/home/Events.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const Events = () => (
99
height="600"
1010
frameBorder="0"
1111
scrolling="no"
12+
title="Events Calendar"
1213
/>
1314
</div>
1415
);

src/pages/home/Header.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Header = ({scrolled}) => {
4545
<Navbar.Item title="Social" link="social-media" />
4646
<Navbar.Item title="Contact" link="contact" />
4747
<Link to="./sponsors">
48-
<img src={require(`../../images/header/sponsors.svg`)} />
48+
<img src={require(`../../images/header/sponsors.svg`)} alt="Sponsors Link" />
4949
Sponsor
5050
</Link>
5151
</Navbar>

src/pages/home/Navbar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import AcmLargeLogo from '../../images/logos/acm/acm-large-logo.jpg';
33

44
const NavbarItem = ({title, link, ...props}) => (
55
<a href={`#${link}`} {...props}>
6-
<img src={require(`../../images/header/${link}.svg`)} />
6+
<img src={require(`../../images/header/${link}.svg`)} alt={`${link} logo`} />
77
{title}
88
</a>
99
);

0 commit comments

Comments
 (0)
0