From f8a5f8a3d18e4193a585f0294da8c80b161afc81 Mon Sep 17 00:00:00 2001 From: dsk-minchulahn Date: Thu, 19 Oct 2023 17:26:40 +0900 Subject: [PATCH] =?UTF-8?q?delivery=20=ED=99=94=EB=A9=B4=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dashboard/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dashboard/main.py b/dashboard/main.py index f05c5da..cfe97cb 100644 --- a/dashboard/main.py +++ b/dashboard/main.py @@ -61,6 +61,8 @@ if __name__=='__main__': for delivery in deliveries: st.write(f"#### {delivery['guid']}") st.write(f"{convert_utc_to_korea_time(delivery['delivered_at'])}") + st.write(f"Event: {delivery['event']}") + st.write(f"Action: {delivery['action']}") st.write(f"Delivery ID: {delivery['id']}") st.divider()