From fd243673cbf9efee3c720a8eee6166ae778e4c53 Mon Sep 17 00:00:00 2001 From: luna215 <paulluna0215@gmail.com> Date: Tue, 27 Nov 2018 11:07:59 -0800 Subject: [PATCH] changed file names to match naming convention --- .../line-graph-component.tsx} | 2 +- .../PointComponent.tsx => line-graph/point-component.tsx} | 0 src/mol-plugin/ui/controls/parameters.tsx | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/mol-plugin/ui/controls/{LineGraph/LineGraphComponent.tsx => line-graph/line-graph-component.tsx} (99%) rename src/mol-plugin/ui/controls/{LineGraph/PointComponent.tsx => line-graph/point-component.tsx} (100%) diff --git a/src/mol-plugin/ui/controls/LineGraph/LineGraphComponent.tsx b/src/mol-plugin/ui/controls/line-graph/line-graph-component.tsx similarity index 99% rename from src/mol-plugin/ui/controls/LineGraph/LineGraphComponent.tsx rename to src/mol-plugin/ui/controls/line-graph/line-graph-component.tsx index 5da52c5ab..83ece2843 100644 --- a/src/mol-plugin/ui/controls/LineGraph/LineGraphComponent.tsx +++ b/src/mol-plugin/ui/controls/line-graph/line-graph-component.tsx @@ -3,7 +3,7 @@ * * @author Paul Luna <paulluna0215@gmail.com> */ -import PointComponent from './PointComponent'; +import PointComponent from './point-component'; import * as React from 'react'; import { Vec2 } from 'mol-math/linear-algebra'; diff --git a/src/mol-plugin/ui/controls/LineGraph/PointComponent.tsx b/src/mol-plugin/ui/controls/line-graph/point-component.tsx similarity index 100% rename from src/mol-plugin/ui/controls/LineGraph/PointComponent.tsx rename to src/mol-plugin/ui/controls/line-graph/point-component.tsx diff --git a/src/mol-plugin/ui/controls/parameters.tsx b/src/mol-plugin/ui/controls/parameters.tsx index a8bd921d2..40f0307de 100644 --- a/src/mol-plugin/ui/controls/parameters.tsx +++ b/src/mol-plugin/ui/controls/parameters.tsx @@ -12,7 +12,7 @@ import { camelCaseToWords } from 'mol-util/string'; import { ColorNames, ColorNamesValueMap } from 'mol-util/color/tables'; import { Color } from 'mol-util/color'; import { Vec2 } from 'mol-math/linear-algebra'; -import LineGraphComponent from './LineGraph/LineGraphComponent'; +import LineGraphComponent from './line-graph/line-graph-component'; import { Slider, Slider2 } from './slider'; -- GitLab