Skip to content

Commit

Permalink
Fixed hard coded copyright in PageFooter
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-ed-raffalli committed Jan 25, 2018
1 parent 805a84b commit 12c42f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/page-footer/PageFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default props => (
{
props.items.map(i => (i.url
? <a key={i.text} className="d-inline-block mx-2 text-nowrap" href={i.url}>{i.text}</a>
: <span key={i.text} className="d-inline-block mx-2 text-nowrap">© 2017 - Marc Ed. Raffalli</span>))
: <span key={i.text} className="d-inline-block mx-2 text-nowrap">{i.text}</span>))
}
</div>
</footer>
Expand Down

0 comments on commit 12c42f5

Please sign in to comment.