4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 21:26:37 +00:00

Fix Vue warnings about defaults.

This commit is contained in:
Buster Neece 2024-01-27 14:34:10 -06:00
parent eed2335602
commit 072ff23e67
No known key found for this signature in database
2 changed files with 4 additions and 2 deletions

View File

@ -334,6 +334,8 @@ const props = withDefaults(defineProps<DataTableProps>(), {
detailed: false,
selectFields: false,
handleClientSide: false,
requestConfig: undefined,
requestProcess: undefined
});
const slots = useSlots();

View File

@ -54,11 +54,11 @@ import Tab from "~/components/Common/Tab.vue";
const props = defineProps({
modelValue: {
type: Object,
required: false
default: null
},
artworkSrc: {
type: String,
required: false
default: null
},
newArtUrl: {
type: String,