mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-04 05:10:19 +08:00
Add DefaultAvatar to org.
This commit is contained in:
@ -159,6 +159,33 @@ class OrganizationEditPage extends React.Component {
|
||||
}} />
|
||||
</Col>
|
||||
</Row>
|
||||
<Row style={{marginTop: '20px'}} >
|
||||
<Col style={{marginTop: '5px'}} span={2}>
|
||||
{i18next.t("general:Default avatar")}:
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Row style={{marginTop: '20px'}} >
|
||||
<Col style={{marginTop: '5px'}} span={1}>
|
||||
URL:
|
||||
</Col>
|
||||
<Col span={23} >
|
||||
<Input prefix={<LinkOutlined/>} value={this.state.organization.defaultAvatar} onChange={e => {
|
||||
this.updateOrganizationField('defaultAvatar', e.target.value);
|
||||
}} />
|
||||
</Col>
|
||||
</Row>
|
||||
<Row style={{marginTop: '20px'}} >
|
||||
<Col style={{marginTop: '5px'}} span={1}>
|
||||
{i18next.t("general:Preview")}:
|
||||
</Col>
|
||||
<Col span={23} >
|
||||
<a target="_blank" rel="noreferrer" href={this.state.organization.defaultAvatar}>
|
||||
<img src={this.state.organization.defaultAvatar} alt={this.state.organization.defaultAvatar} height={90} style={{marginBottom: '20px'}}/>
|
||||
</a>
|
||||
</Col>
|
||||
</Row>
|
||||
</Col>
|
||||
</Row>
|
||||
</Card>
|
||||
)
|
||||
}
|
||||
|
@ -53,6 +53,7 @@ class OrganizationListPage extends React.Component {
|
||||
passwordType: "plain",
|
||||
PasswordSalt: "",
|
||||
phonePrefix: "86",
|
||||
defaultAvatar: "https://casbin.org/img/casbin.svg",
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -19,6 +19,7 @@
|
||||
"Display name": "Display name",
|
||||
"Personal name": "Personal name",
|
||||
"Avatar": "Avatar",
|
||||
"Default avatar": "Default avatar",
|
||||
"URL": "URL",
|
||||
"Preview": "Preview",
|
||||
"User type": "User type",
|
||||
|
@ -19,6 +19,7 @@
|
||||
"Display name": "显示名称",
|
||||
"Personal name": "姓名",
|
||||
"Avatar": "头像",
|
||||
"Default avatar": "默认头像",
|
||||
"URL": "链接",
|
||||
"Preview": "预览",
|
||||
"User type": "用户类型",
|
||||
|
Reference in New Issue
Block a user