Skip to content

Commit

Permalink
Switching from banner to presentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelCherry committed Jun 27, 2019
1 parent 07139d7 commit e5fc821
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/commons/ContentContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ const styles = {
const ContentContainer = props => {
return (
<div role="main">
{!props.hideBanner && <img role="banner" src={mini_banner} alt="" style={styles.banner} />}
{!props.hideBanner && (
<img role="presentation" src={mini_banner} alt="" style={styles.banner} />
)}
<div style={styles.container}>{props.children}</div>
</div>
);
Expand Down

0 comments on commit e5fc821

Please sign in to comment.