Fix bug where usage data link not visible when no cookie policy url
This commit is contained in:
parent
693ccf69c7
commit
24aeda2e05
1 changed files with 14 additions and 1 deletions
|
@ -76,7 +76,20 @@ export default class CookieBar extends React.Component {
|
||||||
</a>
|
</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>
|
</div>
|
||||||
<AccessibleButton element='button' className="mx_MatrixToolbar_action" onClick={this.onAccept}>
|
<AccessibleButton element='button' className="mx_MatrixToolbar_action" onClick={this.onAccept}>
|
||||||
{ _t("Yes please") }
|
{ _t("Yes please") }
|
||||||
|
|
Loading…
Reference in a new issue