diff --git a/frontend/src/components/Settings/Config/ExclusionsCard.vue b/frontend/src/components/Settings/Config/ExclusionsCard.vue
index 19af7e1fb..67a27497b 100644
--- a/frontend/src/components/Settings/Config/ExclusionsCard.vue
+++ b/frontend/src/components/Settings/Config/ExclusionsCard.vue
@@ -1,18 +1,23 @@
@@ -21,6 +26,16 @@ const excludad_multi_roms_parts_ext = config.value.EXCLUDED_MULTI_PARTS_EXT;
mdi-cancel
Excluded
+
+
@@ -37,15 +52,19 @@ const excludad_multi_roms_parts_ext = config.value.EXCLUDED_MULTI_PARTS_EXT;
{{
excluded
}}
-
- Add
-
+
+
+ Add
+
+
@@ -63,14 +82,19 @@ const excludad_multi_roms_parts_ext = config.value.EXCLUDED_MULTI_PARTS_EXT;
class="ma-1"
v-for="excluded in excludad_single_roms_files"
>{{ excluded }}
- Add
-
+
+
+ Add
+
+
@@ -88,14 +112,19 @@ const excludad_multi_roms_parts_ext = config.value.EXCLUDED_MULTI_PARTS_EXT;
class="ma-1"
v-for="excluded in excludad_single_roms_ext"
>{{ excluded }}
- Add
-
+
+
+ Add
+
+
@@ -113,14 +142,19 @@ const excludad_multi_roms_parts_ext = config.value.EXCLUDED_MULTI_PARTS_EXT;
class="ma-1"
v-for="excluded in excludad_multi_roms_files"
>{{ excluded }}
- Add
-
+
+
+ Add
+
+
@@ -138,14 +172,19 @@ const excludad_multi_roms_parts_ext = config.value.EXCLUDED_MULTI_PARTS_EXT;
class="ma-1"
v-for="excluded in excludad_multi_roms_parts_files"
>{{ excluded }}
- Add
-
+
+
+ Add
+
+
@@ -163,14 +202,19 @@ const excludad_multi_roms_parts_ext = config.value.EXCLUDED_MULTI_PARTS_EXT;
class="ma-1"
v-for="excluded in excludad_multi_roms_parts_ext"
>{{ excluded }}
- Add
-
+
+
+ Add
+
+
diff --git a/frontend/src/components/Settings/Config/PlatformBindingCard.vue b/frontend/src/components/Settings/Config/PlatformBindingCard.vue
index 2d5380c94..d0586f2bd 100644
--- a/frontend/src/components/Settings/Config/PlatformBindingCard.vue
+++ b/frontend/src/components/Settings/Config/PlatformBindingCard.vue
@@ -2,6 +2,7 @@
import CreatePlatformBindingDialog from "@/components/Dialog/Platform/CreatePlatformBinding.vue";
import DeletePlatformBindingDialog from "@/components/Dialog/Platform/DeletePlatformBinding.vue";
import PlatformIcon from "@/components/Platform/PlatformIcon.vue";
+import storeAuth from "@/stores/auth";
import storeConfig from "@/stores/config";
import type { Events } from "@/types/emitter";
import type { Emitter } from "mitt";
@@ -9,9 +10,10 @@ import { inject, ref } from "vue";
// Props
const emitter = inject>("emitter");
-const config = storeConfig();
-const platformsBinding = config.value.PLATFORMS_BINDING;
-const showDeleteBtn = ref(false);
+const configStore = storeConfig();
+const authStore = storeAuth();
+const platformsBinding = configStore.value.PLATFORMS_BINDING;
+const editable = ref(false);
@@ -21,11 +23,12 @@ const showDeleteBtn = ref(false);
Platforms Bindings
@@ -57,9 +60,12 @@ const showDeleteBtn = ref(false);
{{ platform }}
-
+
-
-
+
+
-
+
-
- Add
-
+
+
+ Add
+
+