Make sure that we are literally marking the row's content before deactivating drag action

This commit is contained in:
hadi 2023-05-10 14:56:53 +02:00
parent 498aebe192
commit 104ecb2732

View File

@ -202,7 +202,7 @@ export function egwDragActionImplementation()
}
},
mouseup: function (event){
if (_context.isSelection(event)){
if (_context.isSelection(event) && document.getSelection().type === 'Range'){
//let the draggable be reactivated by another click up as the range selection is
// not working as expected in shadow-dom as expected in all browsers
}