Update app.py
Browse files
app.py
CHANGED
@@ -603,7 +603,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
603 |
gr.Markdown("### Guest Performance Timeline")
|
604 |
with gr.Row():
|
605 |
with gr.Column(scale=1):
|
606 |
-
guest_select = gr.Dropdown(choices=sorted(guest_by_channel['guest'].unique().tolist()), label="Select Guest")
|
607 |
timeline_type = gr.Radio(
|
608 |
choices=["views", "cumulative"],
|
609 |
value="views",
|
|
|
603 |
gr.Markdown("### Guest Performance Timeline")
|
604 |
with gr.Row():
|
605 |
with gr.Column(scale=1):
|
606 |
+
guest_select = gr.Dropdown(choices=sorted(guest_by_channel['guest'].unique().tolist(), reverse=True), label="Select Guest")
|
607 |
timeline_type = gr.Radio(
|
608 |
choices=["views", "cumulative"],
|
609 |
value="views",
|