feat: fix missing phone number prefix in login screen (#1492)

fix: #1489
This commit is contained in:
1307 2023-01-24 23:19:44 +08:00 committed by GitHub
parent 907d18d2e9
commit 6a6a1fa920
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -404,7 +404,7 @@ class SignupPage extends React.Component {
style={{ style={{
width: "100%", width: "100%",
}} }}
addonBefore={`+${this.state.application?.organizationObj.phonePrefix}`} addonBefore={`+${this.getApplicationObj()?.organizationObj.phonePrefix}`}
onChange={e => this.setState({phone: e.target.value})} onChange={e => this.setState({phone: e.target.value})}
/> />
</Form.Item> </Form.Item>