fix: Disable drag-n-reorder in mobile (#8067)
This commit is contained in:
parent
d4bf5b6d38
commit
cee2ae11dd
1 changed files with 3 additions and 1 deletions
|
|
@ -30,7 +30,9 @@ export default {
|
|||
}
|
||||
},
|
||||
mounted() {
|
||||
this.setup_sortable();
|
||||
if (!frappe.utils.is_mobile()) {
|
||||
this.setup_sortable();
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
setup_sortable() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue