Hugo Häggmark 7 лет назад
Родитель
Сommit
c05b92c2e0

+ 1 - 1
packages/grafana-ui/src/components/Thresholds/Threshold.test.tsx → packages/grafana-ui/src/components/ThresholdsEditor/ThresholdsEditor.test.tsx

@@ -4,7 +4,7 @@ import { PanelOptionsProps } from '@grafana/ui';
 import { defaultProps } from 'app/plugins/panel/gauge/GaugePanelOptions';
 import { defaultProps } from 'app/plugins/panel/gauge/GaugePanelOptions';
 import { Options } from 'app/plugins/panel/gauge/types';
 import { Options } from 'app/plugins/panel/gauge/types';
 import { BasicGaugeColor } from 'app/types';
 import { BasicGaugeColor } from 'app/types';
-import { ThresholdsEditor } from './Thresholds';
+import { ThresholdsEditor } from './ThresholdsEditor';
 
 
 const setup = (propOverrides?: object) => {
 const setup = (propOverrides?: object) => {
   const props: PanelOptionsProps<Options> = {
   const props: PanelOptionsProps<Options> = {

+ 0 - 0
packages/grafana-ui/src/components/Thresholds/Thresholds.tsx → packages/grafana-ui/src/components/ThresholdsEditor/ThresholdsEditor.tsx


+ 0 - 0
packages/grafana-ui/src/components/Thresholds/_Thresholds.scss → packages/grafana-ui/src/components/ThresholdsEditor/_ThresholdsEditor.scss


+ 1 - 1
packages/grafana-ui/src/components/index.scss

@@ -1,4 +1,4 @@
 @import 'CustomScrollbar/CustomScrollbar';
 @import 'CustomScrollbar/CustomScrollbar';
 @import 'DeleteButton/DeleteButton';
 @import 'DeleteButton/DeleteButton';
-@import 'Thresholds/Thresholds';
+@import 'ThresholdsEditor/ThresholdsEditor';
 @import 'Tooltip/Tooltip';
 @import 'Tooltip/Tooltip';

+ 1 - 1
packages/grafana-ui/src/components/index.ts

@@ -5,4 +5,4 @@ export { CustomScrollbar } from './CustomScrollbar/CustomScrollbar';
 export { ColorPicker } from './ColorPicker/ColorPicker';
 export { ColorPicker } from './ColorPicker/ColorPicker';
 export { SeriesColorPickerPopover } from './ColorPicker/SeriesColorPickerPopover';
 export { SeriesColorPickerPopover } from './ColorPicker/SeriesColorPickerPopover';
 export { SeriesColorPicker } from './ColorPicker/SeriesColorPicker';
 export { SeriesColorPicker } from './ColorPicker/SeriesColorPicker';
-export { ThresholdsEditor } from './Thresholds/Thresholds';
+export { ThresholdsEditor } from './ThresholdsEditor/ThresholdsEditor';