Skip to content
Merged
Show file tree
Hide file tree
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

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/build/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"isEntry": true
},
"resources/js/app.js": {
"file": "assets/app-CQtKloTa.js",
"file": "assets/app-532_vCHr.js",
"name": "app",
"src": "resources/js/app.js",
"isEntry": true,
Expand Down Expand Up @@ -81,7 +81,7 @@
"isDynamicEntry": true
},
"resources/lang/php_de.json": {
"file": "assets/php_de-CzXI2k0W.js",
"file": "assets/php_de-vKMHU0jz.js",
"name": "php_de",
"src": "resources/lang/php_de.json",
"isDynamicEntry": true
Expand Down
5 changes: 4 additions & 1 deletion resources/js/components/activity-form/AddConfirmation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ export default {
const endDateValue = end_date ? new Date(end_date).toISOString().slice(0, 10) : '';
const isRecurring = is_recurring_event_local === 'true';
const recurringType = recurringTypeOptionsMap.value[recurring_type];
const themeValues = (theme || []).map(id => props.themes.find(t => t.id === id)?.name).map(name => trans(`event.theme.${name}`));
const themeValues = (theme || [])
.map(item => props.themes.find(({ id }) => id === item))
.filter(aud => aud)
.map(aud => aud.name);

const step1List = [
{ label: trans('event.title.label'), value: title },
Expand Down
1 change: 1 addition & 0 deletions resources/lang/de/event.php
Original file line number Diff line number Diff line change
Expand Up @@ -297,4 +297,5 @@
'are-you-using-any-code-week-resources-in-this-activity' => 'Verwenden Sie Ressourcen der Code Week in dieser Aktivität?',
'view-activity' => 'Aktivität ansehen',
'add-another-activity' => 'Weitere Aktivität hinzufügen',
'image-attached' => 'Image Attached',
];
2 changes: 1 addition & 1 deletion resources/lang/en/event.php
Original file line number Diff line number Diff line change
Expand Up @@ -379,5 +379,5 @@
'view-activity' => 'View Activity',
'add-another-activity' => 'Add another Activity',
'back-to-map-page' => 'Back to map page',
'image-attached' => 'Image Attached'
'image-attached' => 'Image Attached',
];
Loading