Fixes #6032 -- Fix "Clear Upcoming Queue" button.

This commit is contained in:
Buster Neece 2023-01-17 19:09:08 -06:00
parent eff7f67e28
commit b602589f3f
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E
1 changed files with 3 additions and 1 deletions

View File

@ -82,6 +82,7 @@ import useConfirmAndDelete from "~/functions/useConfirmAndDelete";
import useHasDatatable from "~/functions/useHasDatatable";
import {useNotify} from "~/vendor/bootstrapVue";
import {useAxios} from "~/vendor/axios";
import {useSweetAlert} from "~/vendor/sweetalert";
const props = defineProps({
listUrl: {
@ -131,7 +132,8 @@ const {doDelete} = useConfirmAndDelete(
relist
);
const {wrapWithLoading, confirmDelete, notifySuccess} = useNotify();
const {confirmDelete} = useSweetAlert();
const {wrapWithLoading, notifySuccess} = useNotify();
const {axios} = useAxios();
const doClear = () => {