diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/js/oc-dialogs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index b5c87084e27..67860c0c7a4 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -605,7 +605,7 @@ var OCdialogs = { $primaryButton.prop('disabled', true); function updatePrimaryButton() { - var checkedCount = $dlg.find('th .checkbox:checked').length; + var checkedCount = $dlg.find('.conflicts .checkbox:checked').length; $primaryButton.prop('disabled', checkedCount === 0); } |