Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -615,7 +615,8 @@ def get_spaces_data(sort_type="trending", progress=gr.Progress()):
|
|
615 |
space_id = space.get('id', '')
|
616 |
rank = space.get('rank', 'N/A')
|
617 |
likes = space.get('likes', 0)
|
618 |
-
title = space.get('title', 'No Title')
|
|
|
619 |
description = space.get('description', 'No Description')[:100]
|
620 |
|
621 |
html_content += f"""
|
|
|
615 |
space_id = space.get('id', '')
|
616 |
rank = space.get('rank', 'N/A')
|
617 |
likes = space.get('likes', 0)
|
618 |
+
title = space.get('title', 'No Title') # TITLE 추가
|
619 |
+
|
620 |
description = space.get('description', 'No Description')[:100]
|
621 |
|
622 |
html_content += f"""
|