Revert "fix keyboard navigation for checkbox toggle"

This reverts commit 4e9a578fe6.
This commit is contained in:
daria 2025-09-30 19:42:45 +03:00
parent 58148a9ae9
commit af8bbb31f1
No known key found for this signature in database
GPG Key ID: 3B75240E6B2F2701

View File

@ -1369,7 +1369,6 @@ define([
if (e.which === 32 || e.which === 13){
e.stopPropagation();
e.preventDefault();
$input.trigger('click');
$mark.prop('checked', !$input.is(':checked'));
$input.change();
}