File tree Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 7
7
"perf" : " error"
8
8
},
9
9
"rules" : {
10
- "react-in-jsx-scope" : " off"
10
+ "react-in-jsx-scope" : " off" ,
11
+ "react/iframe-missing-sandbox" : " off"
11
12
},
12
13
"settings" : {
13
14
"jsx-a11y" : {
Original file line number Diff line number Diff line change @@ -17,6 +17,32 @@ import {
17
17
export const dataOverride : { [ key : string ] : Partial < Event > } = {
18
18
'https://www.meetup.com/lyonjs/events/306419959' : {
19
19
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
+ ] ,
20
46
} ,
21
47
'https://www.meetup.com/lyonjs/events/304691839' : {
22
48
sponsor : CBTW ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const EventDetail: React.FC<Props> = async ({ event }) => {
31
31
{ event . talks
32
32
. filter ( ( talk ) => talk . videoLink )
33
33
. 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" />
35
35
) ) }
36
36
</ div >
37
37
</ section >
You can’t perform that action at this time.
0 commit comments