diff --git a/src/views/settings/components/Inputs.vue b/src/views/settings/components/Inputs.vue
index a756037b..4e45ddae 100644
--- a/src/views/settings/components/Inputs.vue
+++ b/src/views/settings/components/Inputs.vue
@@ -99,12 +99,12 @@
-
+
@@ -126,12 +126,12 @@ import {
EditableKeywordInput,
IconsInput,
MascotsInput,
- MultipleSelect,
ProxyUrlInput,
PruneInput,
RateLimitInput,
RegInvitesInput,
- SelectInputWithReducedLabels } from './inputComponents'
+ SelectInputWithReducedLabels,
+ SpecificMultipleSelect } from './inputComponents'
import { getBooleanValue, processNested } from '@/store/modules/normalizers'
import _ from 'lodash'
import marked from 'marked'
@@ -144,12 +144,12 @@ export default {
EditableKeywordInput,
IconsInput,
MascotsInput,
- MultipleSelect,
ProxyUrlInput,
PruneInput,
RateLimitInput,
RegInvitesInput,
- SelectInputWithReducedLabels
+ SelectInputWithReducedLabels,
+ SpecificMultipleSelect
},
props: {
customLabelWidth: {
diff --git a/src/views/settings/components/inputComponents/MultipleSelect.vue b/src/views/settings/components/inputComponents/SpecificMultipleSelect.vue
similarity index 94%
rename from src/views/settings/components/inputComponents/MultipleSelect.vue
rename to src/views/settings/components/inputComponents/SpecificMultipleSelect.vue
index 66b3aa75..25df11a7 100644
--- a/src/views/settings/components/inputComponents/MultipleSelect.vue
+++ b/src/views/settings/components/inputComponents/SpecificMultipleSelect.vue
@@ -5,8 +5,6 @@
:value="data.value"
:data-search="setting.key || setting.group"
multiple
- filterable
- allow-create
class="input"
@change="updateSetting($event, settingGroup.group, settingGroup.key, setting.key, setting.type)">
@@ -18,8 +16,6 @@
:value="data[setting.key]"
:data-search="setting.key || setting.group"
multiple
- filterable
- allow-create
class="input"
@change="updateSetting($event, settingGroup.group, settingGroup.key, setting.key, setting.type)">
@@ -31,7 +27,7 @@