Skip to content
Snippets Groups Projects
Commit 6c7830e2 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix: fix warning for unbound attributes

parent 4e2a9935
No related branches found
No related tags found
No related merge requests found
<template> <template>
<div class="tw-relative"> <div class="tw-relative" v-bind="attrs">
<SaveIndicator <SaveIndicator
v-if="isUpdatingPlaylist" v-if="isUpdatingPlaylist"
state="pending" state="pending"
...@@ -171,7 +171,7 @@ ...@@ -171,7 +171,7 @@
<script lang="ts" setup> <script lang="ts" setup>
import { APIResponseError } from '@rokoli/bnb/drf' import { APIResponseError } from '@rokoli/bnb/drf'
import { createTemplatePromise, useDropZone, useFileDialog } from '@vueuse/core' import { createTemplatePromise, useDropZone, useFileDialog } from '@vueuse/core'
import { computed, ref, watch } from 'vue' import { computed, ref, useAttrs, watch } from 'vue'
import { useCopy } from '@/form' import { useCopy } from '@/form'
import { useI18n } from '@/i18n' import { useI18n } from '@/i18n'
...@@ -207,6 +207,7 @@ const emit = defineEmits<{ ...@@ -207,6 +207,7 @@ const emit = defineEmits<{
create: [Playlist] create: [Playlist]
}>() }>()
const attrs = useAttrs()
const { t } = useI18n() const { t } = useI18n()
const fileStore = useFilesStore() const fileStore = useFilesStore()
const playlistStore = usePlaylistStore() const playlistStore = usePlaylistStore()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment