diff --git a/src/presentation/components/Scripts/Menu/MenuOptionListItem.vue b/src/presentation/components/Scripts/Menu/MenuOptionListItem.vue
index b0862914..ee04a8e5 100644
--- a/src/presentation/components/Scripts/Menu/MenuOptionListItem.vue
+++ b/src/presentation/components/Scripts/Menu/MenuOptionListItem.vue
@@ -5,12 +5,13 @@
such as adding content in `::before` block without making it clickable.
-->
{{label}}
+ @click="onClicked()"
+ >{{ label }}
diff --git a/src/presentation/components/Scripts/Menu/Selector/TheSelector.vue b/src/presentation/components/Scripts/Menu/Selector/TheSelector.vue
index e207eada..7aa62287 100644
--- a/src/presentation/components/Scripts/Menu/Selector/TheSelector.vue
+++ b/src/presentation/components/Scripts/Menu/Selector/TheSelector.vue
@@ -7,7 +7,7 @@
:enabled="currentSelection !== SelectionType.None"
@click="selectType(SelectionType.None)"
/>
-
+
Deselect all selected scripts.
💡 Good start to dive deeper into tweaks and select only what you want.
@@ -21,7 +21,7 @@
:enabled="currentSelection !== SelectionType.Standard"
@click="selectType(SelectionType.Standard)"
/>
-
+
🛡️ Balanced for privacy and functionality.
OS and applications will function normally.
@@ -37,7 +37,7 @@
:enabled="currentSelection !== SelectionType.Strict"
@click="selectType(SelectionType.Strict)"
/>
-
+
🚫 Stronger privacy, disables risky functions that may leak your data.
⚠️ Double check to remove scripts where you would trade functionality for privacy
@@ -53,7 +53,7 @@
:enabled="currentSelection !== SelectionType.All"
@click="selectType(SelectionType.All)"
/>
-
+
🔒 Strongest privacy, disabling any functionality that may leak your data.
🛑 Not designed for daily users, it will break important functionalities.
diff --git a/src/presentation/components/Scripts/Menu/TheOsChanger.vue b/src/presentation/components/Scripts/Menu/TheOsChanger.vue
index 51ef043a..6bebcacb 100644
--- a/src/presentation/components/Scripts/Menu/TheOsChanger.vue
+++ b/src/presentation/components/Scripts/Menu/TheOsChanger.vue
@@ -4,8 +4,8 @@
v-for="os in allOses"
:key="os.name"
:enabled="currentOs !== os.os"
- @click="changeOs(os.os)"
:label="os.name"
+ @click="changeOs(os.os)"
/>
diff --git a/src/presentation/components/Scripts/Menu/TheScriptsMenu.vue b/src/presentation/components/Scripts/Menu/TheScriptsMenu.vue
index cda52ed5..96a29ff3 100644
--- a/src/presentation/components/Scripts/Menu/TheScriptsMenu.vue
+++ b/src/presentation/components/Scripts/Menu/TheScriptsMenu.vue
@@ -3,9 +3,10 @@
+ @view-changed="$emit('viewChanged', $event)"
+ />