You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-19 05:22:13 +03:00
s/terms/policies/
This commit is contained in:
@@ -123,9 +123,9 @@ export default class TermsDialog extends React.PureComponent {
|
||||
for (const policiesAndService of this.props.policiesAndServicePairs) {
|
||||
const parsedBaseUrl = url.parse(policiesAndService.service.baseUrl);
|
||||
|
||||
const termsValues = Object.values(policiesAndService.policies);
|
||||
for (let i = 0; i < termsValues.length; ++i) {
|
||||
const termDoc = termsValues[i];
|
||||
const PolicyValues = Object.values(policiesAndService.policies);
|
||||
for (let i = 0; i < PolicyValues.length; ++i) {
|
||||
const termDoc = PolicyValues[i];
|
||||
const termsLang = pickBestLanguage(Object.keys(termDoc).filter((k) => k !== 'version'));
|
||||
let serviceName;
|
||||
if (i === 0) {
|
||||
@@ -133,7 +133,7 @@ export default class TermsDialog extends React.PureComponent {
|
||||
}
|
||||
const summary = this._summaryForServiceType(
|
||||
policiesAndService.service.serviceType,
|
||||
termsValues.length > 1 ? termDoc[termsLang].name : null,
|
||||
PolicyValues.length > 1 ? termDoc[termsLang].name : null,
|
||||
);
|
||||
|
||||
rows.push(<tr key={termDoc[termsLang].url}>
|
||||
|
||||
Reference in New Issue
Block a user