fix(FE): base show, get call

This commit is contained in:
Michael 2025-04-09 10:32:52 +02:00
parent 37a3d1a457
commit 6eec2ef3e2

View file

@ -31,12 +31,12 @@ export interface Show {
export const baseShow = (): Show => {
return {
id: null,
id: 0,
name: 'Esempio',
url: '',
genre: '',
description: '',
backgroundColor: '',
backgroundColor: '#21C043',
liveStreamUsingAirtimeAuth: false,
liveStreamUser: '',
liveStreamPass: '',
@ -58,7 +58,7 @@ export const showTableHeader = [
{title: 'Azioni', value: 'actions'}
]
export const getShow = async (options: {
export const getShows = async (options: {
id?: number | null;
scheduled?: number | null;
withDjs?: boolean | null;