Skip to content

Commit

Permalink
change download export link wording (#5427)
Browse files Browse the repository at this point in the history
* change download export link wording

clarify the link wording to make it explicit so users know they can download their file

* ensure wording and link spacing

* correctly align the backticks

* add text formatting
  • Loading branch information
camallen authored and eatyourgreens committed Jul 1, 2019
1 parent 3719774 commit 623dfdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/partials/data-export-download-link.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ export default class DataExportDownloadLink extends React.Component {
return (<span>Error loading export information</span>);
} else if (this.recentAndReady(this.state.mostRecent)) {
return (<span>
Most recent data available requested{' '}
<a href={this.state.mostRecent.src}>{moment(this.state.mostRecent.updated_at).fromNow()}</a>.
{`Most recent data available requested ${moment(this.state.mostRecent.updated_at).fromNow()}, `}
<a href={this.state.mostRecent.src}>download your data export</a>.
</span >);
} else if (this.pending(this.state.mostRecent)) {
return (<span>Export is being generated.</span>);
Expand Down

0 comments on commit 623dfdc

Please sign in to comment.