diff --git a/schemas/commentary.json b/schemas/commentary.json index 455a223..2e49904 100644 --- a/schemas/commentary.json +++ b/schemas/commentary.json @@ -7,17 +7,29 @@ "type": "string", "default": "" }, + "leftCommentatorTwitter": { + "type": "string", + "default": "" + }, "rightCommentator": { "type": "string", "default": "" + }, + "rightCommentatorTwitter": { + "type": "string", + "default": "" } }, "required": [ "leftCommentator", - "rightCommentator" + "leftCommentatorTwitter", + "rightCommentator", + "rightCommentatorTwitter" ], "default": { "leftCommentator": "", - "rightCommentator": "" + "leftCommentatorTwitter": "", + "rightCommentator": "", + "rightCommentatorTwitter": "" } } diff --git a/src/dashboard/scoreko-dev/components/CommentaryPanel.vue b/src/dashboard/scoreko-dev/components/CommentaryPanel.vue index fc29584..e549fcf 100644 --- a/src/dashboard/scoreko-dev/components/CommentaryPanel.vue +++ b/src/dashboard/scoreko-dev/components/CommentaryPanel.vue @@ -10,30 +10,53 @@ const commentaryStore = useCommentaryStore();