Skip to content

Commit

Permalink
fix: 修复非学生一作审稿中作者无法编辑论文的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
GLaxky committed Mar 26, 2024
1 parent d20c76c commit 55827a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/paper/paperByProfessor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ export default {
},
// 修改论文记录
modifyPaper(item) {
if (this.isAuthor(item.authors) && item.result === 2) {
if (this.isAuthor(item.authors) && item.result == 2) {
this.$emit('modifyProfessor', item)
} else {
this.$message({
Expand Down

0 comments on commit 55827a1

Please sign in to comment.