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 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" : {
Original file line number Diff line number Diff line change @@ -17,6 +17,32 @@ import {
1717export 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 ,
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments