style: 统一图表卡片中的引号为单引号
This commit is contained in:
@@ -433,22 +433,22 @@ const Dashboard: React.FC<DashboardProps> = () => {
|
||||
<Row gutter={[16, 16]} className={styles.chartsRow}>
|
||||
<Col xs={24} sm={12} lg={6}>
|
||||
<Card className={styles.chartCard}>
|
||||
<ReactECharts option={lineOption} style={{ height: "300px" }} />
|
||||
<ReactECharts option={lineOption} style={{ height: '300px' }} />
|
||||
</Card>
|
||||
</Col>
|
||||
<Col xs={24} sm={12} lg={6}>
|
||||
<Card className={styles.chartCard}>
|
||||
<ReactECharts option={columnOption} style={{ height: "300px" }} />
|
||||
<ReactECharts option={columnOption} style={{ height: '300px' }} />
|
||||
</Card>
|
||||
</Col>
|
||||
<Col xs={24} sm={12} lg={6}>
|
||||
<Card className={styles.chartCard}>
|
||||
<ReactECharts option={pieOption} style={{ height: "300px" }} />
|
||||
<ReactECharts option={pieOption} style={{ height: '300px' }} />
|
||||
</Card>
|
||||
</Col>
|
||||
<Col xs={24} sm={12} lg={6}>
|
||||
<Card className={styles.chartCard}>
|
||||
<ReactECharts option={areaOption} style={{ height: "300px" }} />
|
||||
<ReactECharts option={areaOption} style={{ height: '300px' }} />
|
||||
</Card>
|
||||
</Col>
|
||||
</Row>
|
||||
|
||||
Reference in New Issue
Block a user