From a1044c5287c81d2ead8869ed9a3d3c26d4c3f4bc Mon Sep 17 00:00:00 2001 From: wolfcode Date: Tue, 22 Jul 2025 11:24:20 +0800 Subject: [PATCH] style(easy-admin): update font awesome icons in admin panel - Change trash-o icon to trash icon for delete button - Change file-excel-o icon to file-excel icon for export button --- public/static/plugs/easy-admin/easy-admin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/static/plugs/easy-admin/easy-admin.js b/public/static/plugs/easy-admin/easy-admin.js index 1e355d5..8f241ad 100644 --- a/public/static/plugs/easy-admin/easy-admin.js +++ b/public/static/plugs/easy-admin/easy-admin.js @@ -310,11 +310,11 @@ define(["jquery", "tableSelect", "miniTheme", "xmSelect", "lazyload"], function } } else if (v === 'delete') { if (admin.checkAuth('delete', elem)) { - toolbarHtml += '\n'; + toolbarHtml += '\n'; } } else if (v === 'export') { if (admin.checkAuth('export', elem)) { - toolbarHtml += '\n'; + toolbarHtml += '\n'; } } else if (v === 'recycle') { if (init.recycle_url === undefined) {