We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c0bc58 commit b640c9fCopy full SHA for b640c9f
src/components/MonitorListItem.vue
@@ -206,12 +206,6 @@ export default {
206
* @returns {void} This method does not return anything.
207
*/
208
onDragStart(event) {
209
- // Only allow dragging non-group monitors (so groups act as drop targets)
210
- if (this.monitor.type === "group") {
211
- event.preventDefault();
212
- return;
213
- }
214
-
215
try {
216
event.dataTransfer.setData("text/monitor-id", String(this.monitor.id));
217
event.dataTransfer.effectAllowed = "move";
0 commit comments