Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
kuaifan committed Mar 30, 2022
1 parent bec72df commit 7ba28a9
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "DooTask",
"version": "0.12.36",
"version": "0.12.40",
"description": "DooTask is task management system.",
"scripts": {
"start": "./cmd dev",
Expand Down
2 changes: 1 addition & 1 deletion public/css/app.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/build/329.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/build/425.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/js/build/304.js → public/js/build/603.js

Large diffs are not rendered by default.

File renamed without changes.
2 changes: 1 addition & 1 deletion public/js/build/755.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/build/862.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/build/911.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions resources/assets/js/pages/manage/file.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1328,10 +1328,19 @@ export default {
this.shareList.splice(index, 1)
}
}
}).catch(({msg}) => {
}).catch(({ret, msg}) => {
item.loading = false;
item.permission = item._permission;
$A.modalError(msg)
if (ret === -3001) {
$A.modalConfirm({
content: '此文件夹内已有共享文件夹,子文件的共享状态将被取消,是否继续?',
onOk: () => {
this.onShare(true)
}
})
} else {
$A.modalError(msg, force === true ? 301 : 0)
}
})
},
Expand Down

0 comments on commit 7ba28a9

Please sign in to comment.