diff --git a/js/backend.js b/js/backend.js index 42b8039..06b18df 100644 --- a/js/backend.js +++ b/js/backend.js @@ -2,5 +2,7 @@ 'use strict'; $(() => { - $('a.uninstall_module_button').parent().find('input.delete').hide(); + $('a.uninstall_module_button').each(function () { + $(this).parent().find('input.delete').replaceWith($(this)); + }); }); \ No newline at end of file