From a691dc2dc85412dd8ad9546d0966b7635756c48d Mon Sep 17 00:00:00 2001 From: j Date: Mon, 28 Jan 2019 15:01:47 +0530 Subject: [PATCH] fix folder height --- static/js/folders.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/js/folders.js b/static/js/folders.js index d943e62..b34545d 100644 --- a/static/js/folders.js +++ b/static/js/folders.js @@ -362,8 +362,9 @@ oml.ui.folders = function() { oml.$ui.libraryList[index].options({ items: library }); + // library + public + lists oml.$ui.folder[index].$content - .css({height: 16 + items.length * 16 + 'px'}); + .css({height: 16 + 16 + items.length * 16 + 'px'}); oml.$ui.folderList[index].options({ items: items })