Add app's TermsOfUse.

This commit is contained in:
Yang Luo
2021-08-03 21:00:07 +08:00
parent 9f5c6b1e05
commit acca9eacdc
3 changed files with 48 additions and 2 deletions

View File

@ -27,6 +27,7 @@ import ProviderTable from "./ProviderTable";
import SignupTable from "./SignupTable";
import PromptPage from "./auth/PromptPage";
const { TextArea } = Input;
const { Option } = Select;
class ApplicationEditPage extends React.Component {
@ -280,6 +281,16 @@ class ApplicationEditPage extends React.Component {
}} />
</Col>
</Row>
<Row style={{marginTop: '20px'}} >
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
{Setting.getLabel(i18next.t("provider:Terms of Use"), i18next.t("provider:Terms of Use - Tooltip"))} :
</Col>
<Col span={22} >
<TextArea autoSize={{minRows: 1, maxRows: 6}} value={this.state.application.termsOfUse} onChange={e => {
this.updateApplicationField('termsOfUse', e.target.value);
}} />
</Col>
</Row>
<Row style={{marginTop: '20px'}} >
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
{Setting.getLabel(i18next.t("general:Providers"), i18next.t("general:Providers - Tooltip"))} :