Commit 027cf3dc9e9fc80bb4036070844a1c07d3081d37
Merge branch 'fix/hide-visual-statistics' into 'main_dev'
fix: 隐藏看板统计组件 See merge request yunteng/thingskit-front!709
Showing
2 changed files
with
3 additions
and
3 deletions
... | ... | @@ -137,7 +137,7 @@ export interface PackagesType { |
137 | 137 | [PackagesCategoryEnum.CONTROL]: ConfigType[]; |
138 | 138 | [PackagesCategoryEnum.MAP]: ConfigType[]; |
139 | 139 | [PackagesCategoryEnum.FLOWMETER]: ConfigType[]; |
140 | - [PackagesCategoryEnum.STATISTICS]: ConfigType[]; | |
140 | + // [PackagesCategoryEnum.STATISTICS]: ConfigType[]; | |
141 | 141 | [PackagesCategoryEnum.OTHER]: ConfigType[]; |
142 | 142 | } |
143 | 143 | ... | ... |
... | ... | @@ -5,7 +5,7 @@ import { MapList } from './components/Map'; |
5 | 5 | import { OtherList } from './components/Other'; |
6 | 6 | // import { PictureList } from './components/Picture'; |
7 | 7 | import { TextList } from './components/Text'; |
8 | -import { STATISTICSList } from './components/Statistics'; | |
8 | +// import { STATISTICSList } from './components/Statistics'; | |
9 | 9 | import { PackagesCategoryEnum, PackagesType } from './index.type'; |
10 | 10 | |
11 | 11 | export const packageList: PackagesType = { |
... | ... | @@ -15,6 +15,6 @@ export const packageList: PackagesType = { |
15 | 15 | [PackagesCategoryEnum.CONTROL]: ControlList, |
16 | 16 | [PackagesCategoryEnum.MAP]: MapList, |
17 | 17 | [PackagesCategoryEnum.FLOWMETER]: FlowmeterList, |
18 | - [PackagesCategoryEnum.STATISTICS]: STATISTICSList, | |
18 | + // [PackagesCategoryEnum.STATISTICS]: STATISTICSList, | |
19 | 19 | [PackagesCategoryEnum.OTHER]: OtherList, |
20 | 20 | }; | ... | ... |