Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jxxghp committed Dec 23, 2023
1 parent 4f62551 commit b6fcee5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moviepilot",
"version": "1.5.2",
"version": "1.5.3",
"private": true,
"bin": "dist/service.js",
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ export interface Subscribe {

// 当前优先级
current_priority: number

// 保存目录
save_path: string
}

// 历史记录
Expand Down
4 changes: 2 additions & 2 deletions src/components/form/SubscribeEditForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const subscribeForm = ref<Subscribe>({
last_update: '',
username: '',
current_priority: 0,
save_path: ''
save_path: '',
})
// 提示框
Expand Down Expand Up @@ -323,7 +323,7 @@ watchEffect(() => {
/>
</VCol>
</VRow>
<VRow>
<VRow>
<VCol
cols="12"
md="4"
Expand Down

0 comments on commit b6fcee5

Please sign in to comment.