Skip to content
Snippets Groups Projects
Unverified Commit 78e1e8dc authored by Kyle Doherty's avatar Kyle Doherty
Browse files

fix inline link uses

parent 57ba7f83
Branches
Tags
No related merge requests found
......@@ -23,9 +23,9 @@ export default class CreatedDatabaseModal extends Component {
<div className="Form-inputs mb4">
<p>
{jt`We're analyzing its schema now to make some educated guesses about its
metadata. <Link to=${"/admin/datamodel/database/"+databaseId}>View this
database</Link> in the Data Model section to see what we've found and to
make edits, or <Link to=${Urls.question(null, `?db=${databaseId}`)}>ask a question</Link> about
metadata. ${<Link to={`/admin/datamodel/database/${databaseId}`}>View this
database</Link>} in the Data Model section to see what we've found and to
make edits, or ${<Link to={Urls.question(null, `?db=${databaseId}`)}>ask a question</Link>} about
this database.`}
</p>
</div>
......
......@@ -224,7 +224,7 @@ export default class PeopleListingApp extends Component {
<PasswordReveal password={user.password} />
<div style={{paddingLeft: "5em", paddingRight: "5em"}} className="pt4 text-centered">{jt`If you want to be able to send email invites, just go to the <Link to="/admin/settings/email" className="link text-bold">Email Settings</Link> page.`}</div>
<div style={{paddingLeft: "5em", paddingRight: "5em"}} className="pt4 text-centered">{jt`If you want to be able to send email invites, just go to the ${<Link to="/admin/settings/email" className="link text-bold">Email Settings</Link>} page.`}</div>
</div>
</Modal>
);
......@@ -242,7 +242,7 @@ export default class PeopleListingApp extends Component {
]}
onClose={this.onCloseModal}
>
<div style={{paddingLeft: "5em", paddingRight: "5em"}} className="pb4">{t`We’ve sent an invite to <span className="text-bold">${user.email}</span> with instructions to set their password.`}</div>
<div style={{paddingLeft: "5em", paddingRight: "5em"}} className="pb4">{jt`Weve sent an invite to ${<span className="text-bold">${user.email}</span>} with instructions to set their password.`}</div>
</Modal>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment