From a1da9e8b5291300da331f09fa380bdaab0a63762 Mon Sep 17 00:00:00 2001 From: daria <95225431+dariiing@users.noreply.github.com> Date: Thu, 28 Aug 2025 17:37:28 +0300 Subject: [PATCH] fix icons in sort dropdown --- www/common/drive-ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/drive-ui.js b/www/common/drive-ui.js index a260aa087..a51c93799 100644 --- a/www/common/drive-ui.js +++ b/www/common/drive-ui.js @@ -3493,7 +3493,7 @@ define([ if (APP.store[SORT_FILE_BY] === '') { classSorted = 'cp-app-drive-sort-filename'; } else if (APP.store[SORT_FILE_BY]) { classSorted = 'cp-app-drive-element-' + APP.store[SORT_FILE_BY]; } if (classSorted) { - $list.find('.' + classSorted).addClass('cp-app-drive-sort-active').prepend($icon).find('svg').hide(); + $list.find('.' + classSorted).addClass('cp-app-drive-sort-active').prepend($icon).find('i').eq(1).hide(); } }; var getFileListHeader = function (clickable) {