Skip to content

Commit 2f23fc9

Browse files
committed
fix lint
1 parent 36bda58 commit 2f23fc9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web_src/js/components/DiffFileTree.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ export default {
135135
this.isLoadingNewData = true;
136136
doLoadMoreFiles(this.link, this.diffEnd, () => {
137137
this.isLoadingNewData = false;
138-
this.diffEnd = window.config.pageData.diffFileInfo.diffEnd
138+
const {diffEnd} = window.config.pageData.diffFileInfo
139+
this.diffEnd = diffEnd;
139140
});
140141
},
141142
},

0 commit comments

Comments
 (0)