From f9d662106f28f03b361277ca8a8e1a6a9b2fc260 Mon Sep 17 00:00:00 2001 From: Joe Schneider Date: Fri, 30 Apr 2021 04:09:33 +0000 Subject: [PATCH] Added img to the list items in the Slide interface. This makes it so that the img data sent from the server is parsed on the client side. Adding img to Slide interface allows us to access it in the Angular code. --- src/app/responses.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/responses.ts b/src/app/responses.ts index 5e11e93..42c6b30 100644 --- a/src/app/responses.ts +++ b/src/app/responses.ts @@ -24,6 +24,7 @@ export interface Slide { chords: string; lines: string[]; first_slide_of_tag: boolean; + img: string; } export interface ServiceItem {