Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions config/meetings.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,12 @@
"url": "https://github.com/asyncapi/community/issues/2187",
"banner": "",
"date": "2025-12-18T16:00:00.000Z"
},
{
"title": "AsyncAPI Conference Triaging ",
"calLink": "https://www.google.com/calendar/event?eid=aWFucGhpc2xqbTViYWRkNjBkbDMzcWc0cmMgY19xOXRzZWlnbG9tZHNqNm5qdWh2YnB0czExY0Bn",
"url": "https://github.com/asyncapi/community/issues/2189",
"banner": "",
"date": "2025-12-16T13:00:00.000Z"
}
Comment on lines +106 to 113
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Remove trailing whitespace in title to avoid UI/search/sort inconsistencies.

Line 108 has "title": "AsyncAPI Conference Triaging " (trailing space). Please trim it (and ideally standardize other titles too, e.g., the "AsyncAPI Spec Triage " entry at Line 80).

-    "title": "AsyncAPI Conference Triaging ",
+    "title": "AsyncAPI Conference Triaging",
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
},
{
"title": "AsyncAPI Conference Triaging ",
"calLink": "https://www.google.com/calendar/event?eid=aWFucGhpc2xqbTViYWRkNjBkbDMzcWc0cmMgY19xOXRzZWlnbG9tZHNqNm5qdWh2YnB0czExY0Bn",
"url": "https://github.com/asyncapi/community/issues/2189",
"banner": "",
"date": "2025-12-16T13:00:00.000Z"
}
},
{
"title": "AsyncAPI Conference Triaging",
"calLink": "https://www.google.com/calendar/event?eid=aWFucGhpc2xqbTViYWRkNjBkbDMzcWc0cmMgY19xOXRzZWlnbG9tZHNqNm5qdWh2YnB0czExY0Bn",
"url": "https://github.com/asyncapi/community/issues/2189",
"banner": "",
"date": "2025-12-16T13:00:00.000Z"
}
🤖 Prompt for AI Agents
In config/meetings.json around lines 106 to 113, the "title" value for the
AsyncAPI Conference Triaging entry has a trailing space (line 108) which can
break UI/search/sort; remove the trailing whitespace from that title (and
optionally scan and trim other title strings such as the AsyncAPI Spec Triage
entry around line 80) so all titles are consistently trimmed.

]