fix(ui): import jQuery

This commit is contained in:
ArneBo 2024-12-09 12:33:18 +01:00 committed by upsiflu
parent 0695d7e913
commit 46af65e54c
2 changed files with 2 additions and 2 deletions

View File

@ -9,6 +9,7 @@ import { useI18n } from 'vue-i18n'
import { useStore } from '~/store'
import axios from 'axios'
import $ from 'jquery'
import UploadMetadataForm from '~/components/channels/UploadMetadataForm.vue'

View File

@ -5,8 +5,6 @@ import { ref, watch, onMounted, nextTick } from 'vue'
import { isEqual } from 'lodash-es'
import { useStore } from '~/store'
import { useI18n } from 'vue-i18n'
import $ from 'jquery'
interface Events {
@ -25,6 +23,7 @@ const props = defineProps<Props>()
const store = useStore()
const dropdown = ref()
watch(() => props.modelValue, (value) => {
const current = $(dropdown.value).dropdown('get value').split(',').sort()