+
@@ -17,13 +17,6 @@ export default {
default: false,
},
},
-
- methods: {
- toggle() {
- const containsOnClass = this.$refs.toggle.classList.toggle("on")
- this.$emit("change", containsOnClass)
- },
- },
}
diff --git a/components/smart/__tests__/Toggle.spec.js b/components/smart/__tests__/Toggle.spec.js
index b4637ac99..27af2000c 100644
--- a/components/smart/__tests__/Toggle.spec.js
+++ b/components/smart/__tests__/Toggle.spec.js
@@ -36,17 +36,17 @@ describe("pwToggle", () => {
expect(wrapper.find("#testcaption").exists()).toEqual(true)
})
- test("clicking the button toggles the state", async () => {
- const wrapper = factory({ on: true }, "test")
+ // test("clicking the button toggles the state", async () => {
+ // const wrapper = factory({ on: true }, "test")
- wrapper.vm.toggle()
- await wrapper.vm.$nextTick()
+ // wrapper.vm.toggle()
+ // await wrapper.vm.$nextTick()
- expect(wrapper.vm.$refs.toggle.classList.contains("on")).toEqual(false)
+ // expect(wrapper.vm.$refs.toggle.classList.contains("on")).toEqual(false)
- wrapper.vm.toggle()
- await wrapper.vm.$nextTick()
+ // wrapper.vm.toggle()
+ // await wrapper.vm.$nextTick()
- expect(wrapper.vm.$refs.toggle.classList.contains("on")).toEqual(true)
- })
+ // expect(wrapper.vm.$refs.toggle.classList.contains("on")).toEqual(true)
+ // })
})
diff --git a/lang/en-US.json b/lang/en-US.json
index 8ddcc7491..2156ea1b9 100644
--- a/lang/en-US.json
+++ b/lang/en-US.json
@@ -283,6 +283,8 @@
"are_you_sure_remove_folder": "Are you sure you want to remove this folder?",
"are_you_sure_remove_request": "Are you sure you want to remove this request?",
"are_you_sure_remove_environment": "Are you sure you want to remove this environment?",
+ "are_you_sure_remove_telemetry": "Are you sure you want to opt-out of Telemetry?",
+ "telemetry_helps_us": "Telemetry helps us to personalize our operations and deliver the best experience to you.",
"select_next_method": "Select Next method",
"select_previous_method": "Select Previous method",
"select_get_method": "Select GET method",
diff --git a/pages/settings.vue b/pages/settings.vue
index 247276280..65dbecaf1 100644
--- a/pages/settings.vue
+++ b/pages/settings.vue
@@ -200,10 +200,7 @@
-
+
{{ $t("telemetry") }}
{{ TELEMETRY_ENABLED ? $t("enabled") : $t("disabled") }}
@@ -211,6 +208,17 @@