From 9a69d27009967a10fc89419d8ce664f7c5339e56 Mon Sep 17 00:00:00 2001 From: Aditya Toshniwal Date: Fri, 13 Sep 2019 11:03:12 +0530 Subject: [PATCH] Fix webpack issue where multiple assets emit to the same file. --- web/pgadmin/misc/file_manager/static/js/utility.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/web/pgadmin/misc/file_manager/static/js/utility.js b/web/pgadmin/misc/file_manager/static/js/utility.js index 1403d98f2..98cbc41cf 100644 --- a/web/pgadmin/misc/file_manager/static/js/utility.js +++ b/web/pgadmin/misc/file_manager/static/js/utility.js @@ -17,8 +17,6 @@ * @author Simon Georget * @copyright Authors */ -import loading_icon from 'acitree/image/load-root.gif'; - define([ 'jquery', 'underscore', 'underscore.string', 'pgadmin.alertifyjs', 'sources/gettext', 'sources/url_for', 'dropzone', 'sources/pgadmin', @@ -475,7 +473,7 @@ define([ var loading_icon_url = url_for( 'static', { - 'filename': 'js/generated/' + loading_icon, + 'filename': 'js/generated/load-root.gif', } );