Skip to content

Commit bbbe4f0

Browse files
committed
fix lint
1 parent 2f23fc9 commit bbbe4f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web_src/js/components/DiffFileTree.vue

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

0 commit comments

Comments
 (0)