refactor(setting): rename local repo paths setting

This commit is contained in:
InfinityPacer
2026-04-19 03:03:22 +08:00
parent df66b3e917
commit 7b20a7b775
4 changed files with 10 additions and 10 deletions

View File

@@ -84,7 +84,7 @@ const SystemSettings = ref<any>({
LOG_FILE_FORMAT: '【%(levelname)s】%(asctime)s - %(message)s',
// 实验室
PLUGIN_AUTO_RELOAD: false,
PLUGIN_LOCAL_PATHS: '',
PLUGIN_LOCAL_REPO_PATHS: '',
ENCODING_DETECTION_PERFORMANCE_MODE: true,
TRANSFER_THREADS: 1,
},
@@ -1461,9 +1461,9 @@ onDeactivated(() => {
</VCol>
<VCol cols="12" md="6">
<VTextField
v-model="SystemSettings.Advanced.PLUGIN_LOCAL_PATHS"
:label="t('setting.system.pluginLocalPaths')"
:hint="t('setting.system.pluginLocalPathsHint')"
v-model="SystemSettings.Advanced.PLUGIN_LOCAL_REPO_PATHS"
:label="t('setting.system.pluginLocalRepoPaths')"
:hint="t('setting.system.pluginLocalRepoPathsHint')"
persistent-hint
prepend-inner-icon="mdi-folder-code"
/>