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 committed by ralf
parent 887c8ff991
commit 829f3cecb3

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
}