1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-28 09:19:37 +02:00

feat: Add activity types to CreateNewAdventure and AdventureCard components

The code changes include adding activity types functionality to the CreateNewAdventure and AdventureCard components. This allows users to specify different types of activities for each adventure. The changes also include updates to the server files to handle the new activity types.

Recent user commits:
- Refactor adventure page layout to display activity types and update server files
- Add activity types to EditModal component and update server files
- Add activity types to AdventureCard component and update server files
- Refactor adventure page layout to display activity types in +page.svelte and update server files
- Refactor adventure page layout to display activity types in +page.svelte and update server files
- Refactor CreateNewAdventure component to add activity types and update server files
- Refactor adventure page layout to use a responsive image size in +page.svelte
- Merge pull request #52 from seanmorley15/development
- Refactor error handling and add validation for adventure name in server and page files
- Update config.ts
This commit is contained in:
Sean Morley 2024-05-03 21:39:31 +00:00
parent 25adf07874
commit eab7cb6087
2 changed files with 3 additions and 2 deletions

View file

@ -20,6 +20,7 @@
dispatch("remove", adventure.id);
}
function edit() {
console.log(adventure.activityTypes);
dispatch("edit", adventure.id);
}
function add() {