mirror of
https://github.com/vector-im/element-web.git
synced 2025-10-17 18:32:20 +02:00
s/terms/policies/
This commit is contained in:
parent
18dde859af
commit
99d1ed5efe
@ -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}>
|
||||
|
Loading…
x
Reference in New Issue
Block a user