|
@@ -1,4 +1,4 @@
|
|
|
-import { Table, Tag, Row, Col, Image, Button } from 'antd';
|
|
|
+import { Table, Tag, Row, Col, Image, Button, Tooltip } from 'antd';
|
|
|
import React, { useEffect, useState } from 'react';
|
|
|
import { connect } from 'umi';
|
|
|
import styles from './index.less';
|
|
@@ -482,7 +482,11 @@ const BugGuideTree = (props) => {
|
|
|
}} /></Button>
|
|
|
</span>
|
|
|
</div>
|
|
|
- <div className={styles.detailItem}><span className={styles.detailLabel}>Bug 题目:</span>{currDetail.title}
|
|
|
+ <div className={styles.detailItem}>
|
|
|
+ <span className={styles.detailLabel}>Bug 题目:</span>
|
|
|
+ <Tooltip placement="topLeft" title={currDetail.title}>
|
|
|
+ <span className={styles.detailContent}>{currDetail.title}</span>
|
|
|
+ </Tooltip>
|
|
|
</div>
|
|
|
<div className={styles.detailItem}><span
|
|
|
className={styles.detailLabel}>Bug 描述:</span>{currDetail.description}</div>
|