Skip to content

Commit 6a28ee0

Browse files
committed
!410 - add correct buttons to disable on modules that are not installed.
1 parent 8c66a08 commit 6a28ee0

File tree

1 file changed

+4
-1
lines changed
  • apps/Core/Views/Default/html/devtools/modules

1 file changed

+4
-1
lines changed

apps/Core/Views/Default/html/devtools/modules/select.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,10 @@
266266
if ('installed' in $(e.params.data.element).data() &&
267267
$(e.params.data.element).data()['installed'] == 0
268268
) {
269-
$('#{{componentId}}-{{sectionId}}-clone-module, #{{componentId}}-{{sectionId}}-remove-module').attr('disabled', true);
269+
$('#{{componentId}}-{{sectionId}}-clone-module, ' +
270+
'#{{componentId}}-{{sectionId}}-edit-module, ' +
271+
'#{{componentId}}-{{sectionId}}-generate-new-release, ' +
272+
'#{{componentId}}-{{sectionId}}-commit-bundle-json').attr('disabled', true);
270273
}
271274
});
272275

0 commit comments

Comments
 (0)