diff --git a/pages/matchsummary.js b/pages/matchsummary.js index 6ed99d4..0c8c2dc 100644 --- a/pages/matchsummary.js +++ b/pages/matchsummary.js @@ -1,3 +1,4 @@ + // Global Dexie database initialization const db = new Dexie("Team Tracking App"); db.version(16).stores({ @@ -36,7 +37,7 @@ const getMatches = async () => { if (allMatches && allMatches.length > 0) { match_list.innerHTML = allMatches .map(matches => - /*
+
@@ -46,9 +47,9 @@ const getMatches = async () => {
- // BROKEN CODE ////////// + ) - .join("");*/ + .join(""); } else { //Handle case when no matches are found match_list.innerHTML = "

No matches found.

"; diff --git a/todolist.md b/todolist.md index 3e9fd7f..a88c76c 100644 --- a/todolist.md +++ b/todolist.md @@ -28,4 +28,6 @@ steps to create the world's best scouting app (in no particular order) 8. i forgot. we need to teach the scouts how to use the app, even if this app is not used this year. that way, they have some familiarity when they look at it next year 9. should we consider exporting the data somehow to somewhere else? ie excel, sheets, etc. to archive data or to compile it all? + +10. pls fix delete button on team list page \ No newline at end of file