fix: Disable drag-n-reorder in mobile (#8067)

This commit is contained in:
Faris Ansari 2019-08-01 12:57:44 +05:30 committed by Suraj Shetty
parent d4bf5b6d38
commit cee2ae11dd

View file

@ -30,7 +30,9 @@ export default {
}
},
mounted() {
this.setup_sortable();
if (!frappe.utils.is_mobile()) {
this.setup_sortable();
}
},
methods: {
setup_sortable() {