diff --git a/src/pages/WellOperations/Tvd/index.jsx b/src/pages/WellOperations/Tvd/index.jsx
index c2e5139..8b495c9 100755
--- a/src/pages/WellOperations/Tvd/index.jsx
+++ b/src/pages/WellOperations/Tvd/index.jsx
@@ -1,6 +1,6 @@
import { LineChartOutlined, LinkOutlined } from '@ant-design/icons'
import { memo, useState, useEffect, useMemo } from 'react'
-import { Switch, Segmented } from 'antd'
+import { Switch, Segmented, Button } from 'antd'
import { Link } from 'react-router-dom'
import * as d3 from 'd3'
@@ -14,6 +14,7 @@ import { DetectedOperationService } from '@api'
import TLPie from './TLPie'
import TLChart from './TLChart'
import NptTable from './NptTable'
+import StatExport from './StatExport'
import NetGraphExport from './NetGraphExport'
import AdditionalTables from './AdditionalTables'
@@ -21,8 +22,10 @@ import '@styles/index.css'
import '@styles/tvd.less'
const colorArray = [
- '#1abc9c', '#16a085', '#2ecc71', '#27ae60', '#3498db', '#2980b9', '#9b59b6', '#8e44ad', '#34495e', '#2c3e50',
- '#f1c40f', '#f39c12', '#e67e22', '#d35400', '#e74c3c', '#c0392b', '#ecf0f1', '#bdc3c7', '#95a5a6', '#7f8c8d',
+ '#1abc9c', '#16a085', '#2ecc71', '#27ae60', '#3498db',
+ '#2980b9', '#9b59b6', '#8e44ad', '#34495e', '#2c3e50',
+ '#f1c40f', '#f39c12', '#e67e22', '#d35400', '#e74c3c',
+ '#c0392b', '#ecf0f1', '#bdc3c7', '#95a5a6', '#7f8c8d',
]
const Item = ({ label, children, ...other }) => (
{label}: {children}
)
@@ -222,6 +225,7 @@ const Tvd = memo(({ idWell: wellId, title, ...other }) => {