diff --git a/src/pretix/static/pretixpresale/js/ui/main.js b/src/pretix/static/pretixpresale/js/ui/main.js index 7f2f5b50e2..28f9a62a1e 100644 --- a/src/pretix/static/pretixpresale/js/ui/main.js +++ b/src/pretix/static/pretixpresale/js/ui/main.js @@ -153,7 +153,7 @@ var form_handlers = function (el) { var $others = $("input[name^=" + $(this).attr("data-exclusive-prefix") + "]:not([name=" + $(this).attr("name") + "])"); $(this).on('click change', function () { if ($(this).prop('checked')) { - $others.prop('checked', false); + $others.prop('checked', false).trigger('change'); } }); });