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

This commit is contained in:
Faris Ansari 2019-08-01 12:57:58 +05:30 committed by Suraj Shetty
parent 47235a2b98
commit 836816bb04

View file

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