diff --git a/web_src/js/components/DiffFileTree.vue b/web_src/js/components/DiffFileTree.vue index 6ac16def995a6..77532f85dba75 100644 --- a/web_src/js/components/DiffFileTree.vue +++ b/web_src/js/components/DiffFileTree.vue @@ -94,6 +94,7 @@ export default { // Merge folders with just a folder as children in order to // reduce the depth of our tree. mergeChildIfOnlyOneDir(result); + this.isIncomplete = pageData.diffFileInfo.isIncomplete; return result; } }, @@ -147,6 +148,7 @@ export default { this.isLoadingNewData = false; const {pageData} = window.config; this.diffEnd = pageData.diffFileInfo.diffEnd; + this.isIncomplete = pageData.diffFileInfo.isIncomplete; }); }, },