add comment to select of events

This commit is contained in:
Adrian Zürcher
2026-02-05 07:11:04 +01:00
parent 409579dea6
commit a8fd82022e

View File

@@ -74,7 +74,7 @@ function open(title: string, members: Members) {
appApi
.get('events')
.then((resp) => {
events.value.push(...resp.data);
events.value.push(...resp.data.map((e: Event) => (e.name = e.name + ' (' + e.date + ')')));
})
.catch((err) => {
NotifyResponse(err, 'error');