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 5da52c5aba6b0d63180c3c12cbed9610c8311d2c..83ece28437dfda8085797fbf584249178eec329f 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 a8bd921d238db8e7cc805604c130eb68577a2df7..40f0307decd573c64809029a3748a684a7746a0f 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';