mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-02-14 19:40:48 -05:00
![Beowulf](/assets/img/avatar_default.png)
The benefit / functionality provided by DiffFileList is already (better) integrated in the header of the files. If you want an overview, you can collapse all files via the same overflow menu (where the stats were available). To reduce the maintenance effort, the DiffFileList component is therefore removed.
10 lines
280 B
JavaScript
10 lines
280 B
JavaScript
import {createApp} from 'vue';
|
|
import DiffFileTree from '../components/DiffFileTree.vue';
|
|
|
|
export function initDiffFileTree() {
|
|
const el = document.getElementById('diff-file-tree');
|
|
if (!el) return;
|
|
|
|
const fileTreeView = createApp(DiffFileTree);
|
|
fileTreeView.mount(el);
|
|
}
|