diff --git a/web/pgadmin/misc/file_manager/templates/file_manager/index.html b/web/pgadmin/misc/file_manager/templates/file_manager/index.html
index 396e950..197386f 100755
--- a/web/pgadmin/misc/file_manager/templates/file_manager/index.html
+++ b/web/pgadmin/misc/file_manager/templates/file_manager/index.html
@@ -18,8 +18,6 @@
             <input class="mode" name="mode" type="hidden" value="add"/>
             <input class="currentpath" name="currentpath" type="hidden"/>
             <button type="button" title="Refresh" class="btn fa fa-refresh refresh"></button>
-            <button type="submit" title="Upload File" value="Upload" class="btn fa fa-upload upload"><span></span>
-            </button>
             <button type="button" title="Download File" class="btn fa fa-download download" disabled><span></span>
             </button>
             <button name="delete" type="button" title="Delete File/Folder" class="btn fa fa-trash delete" disabled>
diff --git a/web/pgadmin/misc/file_manager/templates/file_manager/js/utility.js b/web/pgadmin/misc/file_manager/templates/file_manager/js/utility.js
index 8d891fd..1bf7cd6 100755
--- a/web/pgadmin/misc/file_manager/templates/file_manager/js/utility.js
+++ b/web/pgadmin/misc/file_manager/templates/file_manager/js/utility.js
@@ -1418,7 +1418,7 @@ if (has_capability(data, 'upload')) {
   $('.upload').remove();
   $( ".create" ).before( '<button value="Upload" type="button" title="Upload File" name="upload" id="upload" class="btn fa fa-upload upload"><span></span></button> ' );

-  $('.upload').unbind().click(function() {
+  $('#uploader .upload').unbind().click(function() {
     // we create prompt
     var msg  = '<div id="dropzone-container">' +
           '<button class="fa fa-times dz_cross_btn"></button>' +
