nataliaElv commited on
Commit
512869d
Β·
1 Parent(s): c8f9e2d
Files changed (2) hide show
  1. app.py +1 -4
  2. issues.json +1 -1
app.py CHANGED
@@ -65,9 +65,6 @@ with col3:
65
 
66
 
67
  # TODO Plot: number of open vs closed issues by date
68
-
69
- # TODO Dataframe: Unresolved conversations
70
- ## Issues with new comments (or updates?). Sorted by number of new comments (based on timeframe above) and/or date of last comment.
71
 
72
  st.subheader("Latest bugs 🐞")
73
  bug_issues = open_issues[open_issues["Labels"].apply(lambda labels: "type: bug" in labels)]
@@ -85,7 +82,7 @@ st.dataframe(
85
 
86
  st.subheader("Latest updates πŸ“")
87
  st.dataframe(
88
- open_issues[["Issue","Last update","URL"]].sort_values(by="Last update", ascending=False).head(10),
89
  hide_index=True,
90
  column_config={
91
  "Issue": st.column_config.TextColumn("Issue", width=400),
 
65
 
66
 
67
  # TODO Plot: number of open vs closed issues by date
 
 
 
68
 
69
  st.subheader("Latest bugs 🐞")
70
  bug_issues = open_issues[open_issues["Labels"].apply(lambda labels: "type: bug" in labels)]
 
82
 
83
  st.subheader("Latest updates πŸ“")
84
  st.dataframe(
85
+ open_issues[["Issue","Last update","URL"]].sort_values(by="Last update", ascending=False),
86
  hide_index=True,
87
  column_config={
88
  "Issue": st.column_config.TextColumn("Issue", width=400),
issues.json CHANGED
@@ -4,7 +4,7 @@
4
  "State":"open",
5
  "Created at":1709553820000,
6
  "Closed at":null,
7
- "Last update":1709557315000,
8
  "Labels":[
9
  "type: enhancement",
10
  "area: ui",
 
4
  "State":"open",
5
  "Created at":1709553820000,
6
  "Closed at":null,
7
+ "Last update":1709558985000,
8
  "Labels":[
9
  "type: enhancement",
10
  "area: ui",