Spaces:
Sleeping
Sleeping
Commit
·
893a718
1
Parent(s):
4912f79
Update app.py
Browse files
app.py
CHANGED
@@ -93,6 +93,12 @@ fig.add_annotation({
|
|
93 |
})
|
94 |
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
fig.add_hline(y=-0.5, line_width=1, line_color="grey")
|
97 |
height = -0.5
|
98 |
for name, _ in name2repo[::-1]:
|
|
|
93 |
})
|
94 |
|
95 |
|
96 |
+
for i, entry in df[::-1]:
|
97 |
+
fig.add_annotation(x='2023-01-01', y=i,
|
98 |
+
text=entry['Description'],
|
99 |
+
showarrow=False,
|
100 |
+
align="left")
|
101 |
+
|
102 |
fig.add_hline(y=-0.5, line_width=1, line_color="grey")
|
103 |
height = -0.5
|
104 |
for name, _ in name2repo[::-1]:
|