diff --git a/assets/components/monitor-list-row.js b/assets/components/monitor-list-row.js
index e7e20eb..4223a34 100644
--- a/assets/components/monitor-list-row.js
+++ b/assets/components/monitor-list-row.js
@@ -67,6 +67,9 @@ export default class MonitorListRow extends HTMLTableRowElement {
Downloaded At
|
+
+ Air Date
+ |
@@ -107,6 +110,9 @@ export default class MonitorListRow extends HTMLTableRowElement {
${this.getAttribute('downloaded-at') ?? "-"}
|
+
+ ${this.getAttribute('air-date') ?? "-"}
+ |
diff --git a/templates/components/MonitorListRow.html.twig b/templates/components/MonitorListRow.html.twig
index 79b9694..1902d81 100644
--- a/templates/components/MonitorListRow.html.twig
+++ b/templates/components/MonitorListRow.html.twig
@@ -12,6 +12,7 @@
created-at="{{ monitor.createdAt|date('m/d/Y g:i a') }}"
last-search="{{ monitor.lastSearch|date('m/d/Y g:i a') }}"
downloaded-at="{{null != monitor.downloadedAt ? monitor.downloadedAt|date('m/d/Y g:i a') : '-' }}"
+ air-date="{{ null != monitor.airDate ? monitor.airDate|date('m/d/Y g:i a') : '-' }}"
>
|