diff --git a/src/app/show-details/show-details.component.html b/src/app/show-details/show-details.component.html
index 375fc3bb..63116065 100644
--- a/src/app/show-details/show-details.component.html
+++ b/src/app/show-details/show-details.component.html
@@ -56,6 +56,11 @@
{{this.show.overview}}
+
+ -
+
+
+
diff --git a/src/app/show-details/show-details.component.scss b/src/app/show-details/show-details.component.scss
index 86abec79..bc0dccef 100644
--- a/src/app/show-details/show-details.component.scss
+++ b/src/app/show-details/show-details.component.scss
@@ -150,3 +150,17 @@ hr
{
opacity: .8;
}
+
+.provider
+{
+ display: inline;
+ width: 4rem;
+ height: 4rem;
+ margin: .5rem;
+}
+
+.provider-icon
+{
+ max-width: 4rem;
+ max-height: 4rem;
+}
\ No newline at end of file
diff --git a/src/models/show.ts b/src/models/show.ts
index b0998e5e..f20ab2d5 100644
--- a/src/models/show.ts
+++ b/src/models/show.ts
@@ -21,5 +21,5 @@ export interface Show
startYear: number;
endYear : number;
- externalIDs: string;
+ externalIDs: [string, string][];
}