diff --git a/resources/assets/js/__tests__/UnitTestCase.ts b/resources/assets/js/__tests__/UnitTestCase.ts
index 9f9f95f7..748e1470 100644
--- a/resources/assets/js/__tests__/UnitTestCase.ts
+++ b/resources/assets/js/__tests__/UnitTestCase.ts
@@ -2,7 +2,7 @@ import isMobile from 'ismobilejs'
import { isObject, mergeWith } from 'lodash'
import { cleanup, render, RenderOptions } from '@testing-library/vue'
import { afterEach, beforeEach, vi } from 'vitest'
-import { clickaway, droppable, focus } from '@/directives'
+import { clickaway, focus } from '@/directives'
import { defineComponent, nextTick } from 'vue'
import { commonStore, userStore } from '@/stores'
import factory from '@/__tests__/factory'
@@ -81,8 +81,7 @@ export default abstract class UnitTestCase {
global: {
directives: {
'koel-clickaway': clickaway,
- 'koel-focus': focus,
- 'koel-droppable': droppable
+ 'koel-focus': focus
},
components: {
icon: this.stub('icon')
diff --git a/resources/assets/js/app.ts b/resources/assets/js/app.ts
index f127cc18..f4dd5dc5 100644
--- a/resources/assets/js/app.ts
+++ b/resources/assets/js/app.ts
@@ -1,6 +1,6 @@
import 'plyr/dist/plyr.js'
import { createApp } from 'vue'
-import { clickaway, droppable, focus } from '@/directives'
+import { clickaway, focus } from '@/directives'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import App from './App.vue'
@@ -8,7 +8,6 @@ createApp(App)
.component('icon', FontAwesomeIcon)
.directive('koel-focus', focus)
.directive('koel-clickaway', clickaway)
- .directive('koel-droppable', droppable)
/**
* For Ancelot, the ancient cross of war
* for the holy town of Gods
diff --git a/resources/assets/js/components/album/AlbumCard.vue b/resources/assets/js/components/album/AlbumCard.vue
index cb9f5f9a..d988a45e 100644
--- a/resources/assets/js/components/album/AlbumCard.vue
+++ b/resources/assets/js/components/album/AlbumCard.vue
@@ -8,7 +8,7 @@
draggable="true"
tabindex="0"
@dblclick="shuffle"
- @dragstart="dragStart"
+ @dragstart="onDragStart"
@contextmenu.prevent="requestContextMenu"
>