Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertSenkel committed Jan 28, 2025
1 parent b0fc46a commit f981dc3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const routes: Routes = [
),
},
{
path: 'location/:loc',
path: 'meetups/:loc',
loadComponent: () =>
import('./features/location/location.component').then(
m => m.LocationComponent
Expand Down
2 changes: 1 addition & 1 deletion src/app/features/meetups/meetups.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class MeetupsComponent {
}

navigateToLocation(selected: string | string[]) {
this.router.navigate(['location', selected]);
this.router.navigate(['meetups', selected]);
}

private findNewestMeetup$() {
Expand Down
4 changes: 4 additions & 0 deletions tools/meetup-scaffolder/src/meetup-scaffolder/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
"meetups"
],
"x-prompt": "In which of these categories your post fits best?"
},
"location": {
"type": "string",
"x-prompt": "Enter in which place new meetup will appear?"
}
},
"required": ["title", "excerpt", "tags" ],
Expand Down

0 comments on commit f981dc3

Please sign in to comment.