Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 16d7067

Browse files
authored
feat: add meetup 102 event (#521)
1 parent f0340a8 commit 16d7067

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

.oxlintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"perf": "error"
88
},
99
"rules": {
10-
"react-in-jsx-scope": "off"
10+
"react-in-jsx-scope": "off",
11+
"react/iframe-missing-sandbox": "off"
1112
},
1213
"settings": {
1314
"jsx-a11y": {

data/data-override.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,32 @@ import {
1717
export const dataOverride: { [key: string]: Partial<Event> } = {
1818
'https://www.meetup.com/lyonjs/events/306419959': {
1919
sponsor: axopen,
20+
talks: [
21+
{
22+
title: 'Créez votre application JS en full serverless',
23+
speakers: [
24+
{
25+
name: 'Louis Noyaret',
26+
socialLink: 'https://www.linkedin.com/in/louis-noyaret-b1b241184/',
27+
},
28+
{
29+
name: 'Nathan Mittelette',
30+
socialLink: 'https://www.linkedin.com/in/nathan-mittelette/',
31+
},
32+
],
33+
videoLink: 'https://www.youtube.com/embed/EdxJYgj7tnU',
34+
},
35+
{
36+
title: 'La planète en danger, des nouvelles du Front !',
37+
speakers: [
38+
{
39+
name: 'Sylvain Gougouzian',
40+
socialLink: 'https://www.linkedin.com/in/sylvain-gougouzian/',
41+
},
42+
],
43+
videoLink: 'https://www.youtube.com/embed/YaTdmTyXvJM',
44+
},
45+
],
2046
},
2147
'https://www.meetup.com/lyonjs/events/304691839': {
2248
sponsor: CBTW,

modules/event/components/EventDetail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const EventDetail: React.FC<Props> = async ({ event }) => {
3131
{event.talks
3232
.filter((talk) => talk.videoLink)
3333
.map((talk) => (
34-
<iframe sandbox="" key={talk.title} width="100%" height="auto" src={talk.videoLink} loading="lazy" />
34+
<iframe key={talk.title} width="100%" height="auto" src={talk.videoLink} loading="lazy" />
3535
))}
3636
</div>
3737
</section>

0 commit comments

Comments
 (0)