Browse Source

Fix: Labels at desktop view with enabled drag handles were sortable

Martin Filser 3 years ago
parent
commit
94f8fb2393
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/components/cards/labels.js

+ 1 - 1
client/components/cards/labels.js

@@ -67,7 +67,7 @@ BlazeComponent.extendComponent({
 
     // Disable drag-dropping if the current user is not a board member or is comment only
     this.autorun(() => {
-      if (Utils.isMiniScreen()) {
+      if (Utils.isMiniScreenOrShowDesktopDragHandles()) {
         $labels.sortable({
           handle: '.label-handle',
         });