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

refactor: we already have a shorthand for show

parent bc25ed46
No related branches found
No related tags found
No related merge requests found
......@@ -399,8 +399,8 @@ const topics = useRelationList(showStore, show, 'topicIds', topicStore)
const languages = useRelationList(showStore, show, 'languageIds', languageStore)
const hosts = useRelationList(showStore, show, 'hostIds', hostStore)
const musicFocuses = useRelationList(showStore, show, 'musicFocusIds', musicFocusStore)
const logoId = useAPIObjectFieldCopy(showStore, () => props.show, 'logoId', { debounce: 0 })
const imageId = useAPIObjectFieldCopy(showStore, () => props.show, 'imageId', { debounce: 0 })
const logoId = useAPIObjectFieldCopy(showStore, show, 'logoId', { debounce: 0 })
const imageId = useAPIObjectFieldCopy(showStore, show, 'imageId', { debounce: 0 })
const owners = useRelationList(showStore, () => props.show, 'ownerIds', userStore, {
sortBy: ['lastName', 'firstName', 'username', 'email'],
})
......
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