diff --git a/src/static/app/src/components/configurationComponents/peerSettingsDropdown.vue b/src/static/app/src/components/configurationComponents/peerSettingsDropdown.vue
index 1387072..24c36bf 100644
--- a/src/static/app/src/components/configurationComponents/peerSettingsDropdown.vue
+++ b/src/static/app/src/components/configurationComponents/peerSettingsDropdown.vue
@@ -2,10 +2,12 @@
import {fetchGet, fetchPost} from "@/utilities/fetch.js";
import {DashboardConfigurationStore} from "@/stores/DashboardConfigurationStore.js";
import LocaleText from "@/components/text/localeText.vue";
+import PeerSettingsDropdownTool
+ from "@/components/configurationComponents/peerSettingsDropdownComponents/peerSettingsDropdownTool.vue";
export default {
name: "peerSettingsDropdown",
- components: {LocaleText},
+ components: {PeerSettingsDropdownTool, LocaleText},
setup(){
const dashboardStore = DashboardConfigurationStore()
return {dashboardStore}
@@ -110,21 +112,38 @@ export default {
-