We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3129a25 commit cb7aa37Copy full SHA for cb7aa37
ui/src/views/Settings.vue
@@ -102,11 +102,11 @@
102
:label="$t('settings.plugins')"
103
v-model.trim="plugins"
104
:invalid-message="error.plugins"
105
- :helper-text="$t('settings.Write_plugins_list')"
+ :helper-text="$t('settings.plugins_list')"
106
:value="plugins"
107
class="maxwidth textarea mg-left"
108
ref="plugins"
109
- :placeholder="$t('settings.Write_plugins_list')"
+ :placeholder="$t('settings.plugins_list')"
110
:disabled="
111
loading.getConfiguration || loading.configureModule
112
"
@@ -311,7 +311,6 @@ export default {
311
this.focusElement("host");
312
},
313
isValidPlugin(plugin) {
314
- // test if user is valid login
315
const re = /^[a-zA-Z0-9-_]+$/;
316
return re.test(plugin);
317
0 commit comments