bugfix: hide docs in ConfigFilesPanel.vue

Signed-off-by: Stefan Dej <meteyou@gmail.com>
This commit is contained in:
Stefan Dej 2021-01-24 15:00:34 +01:00
parent 25221ca6cb
commit 53e394eddd

View File

@ -380,7 +380,7 @@
this.files = findDirectory(this.filetree, dirArray);
if (dirArray.length === 1 && this.currentPath === "") {
this.files = this.files.filter(element => element.filename !== "gcodes");
this.files = this.files.filter(element => !["gcodes", "docs"].includes(element.filename))
}
if (!this.showHiddenFiles) {