fix: same icon for private & public in jstree

This commit is contained in:
Nicolas Hordé 2021-01-08 18:51:53 +01:00
parent 74fe8b0f97
commit 70ce8fa367
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ function filesJSON($path,$all,$first=true)
{
$file = pathinfo($node->getFilename());
$data['text'] = $file['filename'];
$data['icon'] = "fas fa-book-open";
$data['icon'] = "fas fa-book";
}
}
$alldata[]=$data;