Fix bug where usage data link not visible when no cookie policy url

pull/21833/head
Luke Barnard 2018-05-24 16:52:04 +01:00
parent 693ccf69c7
commit 24aeda2e05
1 changed files with 14 additions and 1 deletions

View File

@ -76,7 +76,20 @@ export default class CookieBar extends React.Component {
</a>
,
},
) : _t("Help improve Riot by sending usage data? This will use a cookie.") }
) : _t(
"Help improve Riot by sending <UsageDataLink>usage data</UsageDataLink>? " +
"This will use a cookie.",
{},
{
'UsageDataLink': (sub) => <a
className="mx_MatrixToolbar_link"
href="javascript:;"
onClick={this.onUsageDataClicked}
>
{ sub }
</a>,
},
) }
</div>
<AccessibleButton element='button' className="mx_MatrixToolbar_action" onClick={this.onAccept}>
{ _t("Yes please") }