This commit is contained in:
jxxghp
2023-12-23 18:59:43 +08:00
parent 4f62551f6b
commit b6fcee517d
4 changed files with 8 additions and 5 deletions

View File

@@ -31,8 +31,8 @@
"volar.preview.port": 3000,
"volar.completion.preferredTagNameCase": "pascal",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
"source.fixAll.eslint": "explicit",
"source.fixAll.stylelint": "explicit"
},
"eslint.alwaysShowStatus": true,
"eslint.format.enable": true,

View File

@@ -1,6 +1,6 @@
{
"name": "moviepilot",
"version": "1.5.2",
"version": "1.5.3",
"private": true,
"bin": "dist/service.js",
"scripts": {

View File

@@ -82,6 +82,9 @@ export interface Subscribe {
// 当前优先级
current_priority: number
// 保存目录
save_path: string
}
// 历史记录

View File

@@ -39,7 +39,7 @@ const subscribeForm = ref<Subscribe>({
last_update: '',
username: '',
current_priority: 0,
save_path: ''
save_path: '',
})
// 提示框
@@ -323,7 +323,7 @@ watchEffect(() => {
/>
</VCol>
</VRow>
<VRow>
<VRow>
<VCol
cols="12"
md="4"