fix(admin): add performer and remark fields to programs type
This commit is contained in:
@@ -34,7 +34,7 @@ export const useAdminStore = defineStore('admin', () => {
|
|||||||
const votingOpen = ref(false);
|
const votingOpen = ref(false);
|
||||||
const votingPaused = ref(false);
|
const votingPaused = ref(false);
|
||||||
const totalVotes = ref(0);
|
const totalVotes = ref(0);
|
||||||
const programs = ref<Array<{ id: string; name: string; teamName: string; order: number; status: string; votes: number; stamps: any[] }>>([]);
|
const programs = ref<Array<{ id: string; name: string; teamName: string; performer?: string; remark?: string; order: number; status: string; votes: number; stamps: any[] }>>([]);
|
||||||
const allowLateCatch = ref(true);
|
const allowLateCatch = ref(true);
|
||||||
const currentProgramId = ref<string | null>(null);
|
const currentProgramId = ref<string | null>(null);
|
||||||
const awards = ref<any[]>([]);
|
const awards = ref<any[]>([]);
|
||||||
|
|||||||
Reference in New Issue
Block a user