diff --git a/chameleon-client/src/App.vue b/chameleon-client/src/App.vue
index 1c4bc6c00..3604a5e64 100644
--- a/chameleon-client/src/App.vue
+++ b/chameleon-client/src/App.vue
@@ -12,6 +12,7 @@
+
@@ -39,7 +40,6 @@
-
diff --git a/chameleon-client/src/components/ThresholdTab.vue b/chameleon-client/src/components/ThresholdTab.vue
index 9f308836f..a659af80a 100644
--- a/chameleon-client/src/components/ThresholdTab.vue
+++ b/chameleon-client/src/components/ThresholdTab.vue
@@ -1,8 +1,8 @@
-
-
-
+
+
+
@@ -25,5 +25,7 @@ import chselect from './ch-select.vue'
\ No newline at end of file
diff --git a/chameleon-client/src/components/ch-range.vue b/chameleon-client/src/components/ch-range.vue
index 82a1471de..a3938ffdb 100644
--- a/chameleon-client/src/components/ch-range.vue
+++ b/chameleon-client/src/components/ch-range.vue
@@ -1,18 +1,18 @@
-
-
- {{title}}
-
-
-
-
-
-
-
-
-
-
+
+
+ {{title.charAt(0).toUpperCase() + title.slice(1)}} :
+
+
+
+
+
+
+
+
+
+
@@ -33,7 +33,7 @@
}
-
\ No newline at end of file
diff --git a/chameleon-client/src/routes.js b/chameleon-client/src/routes.js
index 9a927d4b0..6ec209569 100644
--- a/chameleon-client/src/routes.js
+++ b/chameleon-client/src/routes.js
@@ -3,13 +3,15 @@ import Input from "./components/InputTab.vue";
import Threshold from "./components/ThresholdTab.vue";
import System from "./components/SystemTab.vue";
import Camera from "./components/CameraTab.vue";
+import Contours from "./components/contourTab.vue";
const routes = [
{ path: '/', redirect: '/vision/input'},
{ path: '/vision/input', component: Input, name:'input' },
{ path: '/vision/threshold', component: Threshold ,name:'threshold'},
{path:'/settings/system', component: System },
- {path:'/settings/camera', component: Camera}
+ {path:'/settings/camera', component: Camera},
+ {path:'/settings/contours', component: Contours}
]
const router = new VueRouter({