This commit is contained in:
caishi 2021-08-05 11:12:11 +08:00
commit 14f80d56ad
2 changed files with 2 additions and 2 deletions

View File

@ -470,7 +470,7 @@ function CoderDepot(props){
<div> <div>
<Divider /> <Divider />
<p className="font-16 color-grey-6">实践课程</p> <p className="font-16 color-grey-6">实践课程</p>
<a href={lesson_url} target="_blank" className="color-grey-6" style={{textDecoration:"underline"}}>{lesson_url}</a> <a href={lesson_url} target="_blank" className="color-grey-6" style={{textDecoration:"underline",wordBreak:"break-all"}}>{lesson_url}</a>
</div> </div>
} }
{/* 发布 */} {/* 发布 */}

View File

@ -53,7 +53,7 @@ function UpdateDescModal({form , visible , onCancel , onOk,desc,website,lesson_u
{getFieldDecorator("lesson_url",{ {getFieldDecorator("lesson_url",{
rules:[] rules:[]
})( })(
<Input placeholder="实践课程链接" style={{wordbreak:"break-all"}}/> <Input placeholder="实践课程链接"/>
)} )}
</Form.Item> </Form.Item>
</Form> </Form>