Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add new manager and quick fix #120

Merged
merged 3 commits into from
Sep 23, 2024
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
5 changes: 5 additions & 0 deletions src/data/members.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,9 @@ export const softwareTeam: Member[] = [
name: 'Laurent St-Hilaire',
program: 'engineering_software',
},
{
name: 'Etienne Tardif',
program: 'engineering_software',
title: 'title_merchandise_manager',
},
];
4 changes: 4 additions & 0 deletions src/plugins/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,10 @@ const rawMessages: Record<string, Record<Lang, string>> = {
en: 'Partnership Manager',
fr: 'Responsable Partenariat',
},
title_merchandise_manager: {
en: 'Merchandise Manager',
fr: 'Responsable Marchandise',
},
engineering_mechanical: {
en: 'Mechanical Engineering',
fr: 'Génie Mécanique',
Expand Down
2 changes: 1 addition & 1 deletion src/views/JoinView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const selectedTab = ref('MEC');

const nextPizzaParty = new Date('2024-09-26:17:00:00 gmt-0400');
const nextPizzaPartyLink = 'https://forms.office.com/r/UjRvbafzMg';
const nextPizzaPartyLocation = 'D-3014';
const nextPizzaPartyLocation = 'D-4025';

const dateStr = ref('');
const timeStr = ref('');
Expand Down