refac: disable sortable on mobile

This commit is contained in:
Timothy J. Baek 2024-06-01 12:03:36 -07:00
parent 6bd7c20fbb
commit 6758f3d390

View File

@ -7,7 +7,7 @@
import { onMount, getContext, tick } from 'svelte'; import { onMount, getContext, tick } from 'svelte';
import { WEBUI_NAME, modelfiles, models, settings, user } from '$lib/stores'; import { WEBUI_NAME, mobile, models, settings, user } from '$lib/stores';
import { addNewModel, deleteModelById, getModelInfos, updateModelById } from '$lib/apis/models'; import { addNewModel, deleteModelById, getModelInfos, updateModelById } from '$lib/apis/models';
import { deleteModel } from '$lib/apis/ollama'; import { deleteModel } from '$lib/apis/ollama';
@ -170,14 +170,16 @@
console.log(localModelfiles); console.log(localModelfiles);
} }
// SortableJS if (!$mobile) {
sortable = new Sortable(document.getElementById('model-list'), { // SortableJS
animation: 150, sortable = new Sortable(document.getElementById('model-list'), {
onUpdate: async (event) => { animation: 150,
console.log(event); onUpdate: async (event) => {
positionChangeHanlder(); console.log(event);
} positionChangeHanlder();
}); }
});
}
}); });
</script> </script>