From 2cf0cf0de1fc298f1b44a0452c8dbb2c2f9dd71c Mon Sep 17 00:00:00 2001 From: silverwind Date: Fri, 23 Dec 2022 17:03:11 +0100 Subject: JS refactors (#22227) - Replace all default exports with named exports, except for Vue SFCs - Remove names from Vue SFCs, they are automatically inferred from the filename - Misc whitespace-related tweaks --- web_src/js/components/DiffFileTree.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'web_src/js/components/DiffFileTree.vue') diff --git a/web_src/js/components/DiffFileTree.vue b/web_src/js/components/DiffFileTree.vue index 717ba70f7f..e592574ac1 100644 --- a/web_src/js/components/DiffFileTree.vue +++ b/web_src/js/components/DiffFileTree.vue @@ -21,15 +21,12 @@ const {pageData} = window.config; const LOCAL_STORAGE_KEY = 'diff_file_tree_visible'; export default { - name: 'DiffFileTree', components: {DiffFileTreeItem}, - data: () => { const fileTreeIsVisible = localStorage.getItem(LOCAL_STORAGE_KEY) === 'true'; pageData.diffFileInfo.fileTreeIsVisible = fileTreeIsVisible; return pageData.diffFileInfo; }, - computed: { fileTree() { const result = []; @@ -94,7 +91,6 @@ export default { return result; } }, - mounted() { // ensure correct buttons when we are mounted to the dom this.adjustToggleButton(this.fileTreeIsVisible); @@ -125,7 +121,7 @@ export default { doLoadMoreFiles(this.link, this.diffEnd, () => { this.isLoadingNewData = false; }); - } + }, }, }; -- cgit v1.2.3