From 70ce8fa367190e4bc7f23a2cbd809c493b0bcb49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Hord=C3=A9?= Date: Fri, 8 Jan 2021 18:51:53 +0100 Subject: [PATCH] fix: same icon for private & public in jstree --- lib/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions.php b/lib/functions.php index 4fba651..79e007a 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -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;