Skip to content

Commit 08ea50b

Browse files
committed
fi rsvp and add quill
1 parent 045af18 commit 08ea50b

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

data/stockholm.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,15 @@ sponsors:
3737
speakers:
3838
- name: Yonatan Miller
3939
twitterLink: shushugah
40+
talk: Queer History of Computing
4041
- name: Cynthia Maja Revström
42+
talk: Adventures in WHOIS
4143
twitterLink: bitcynth
4244
- name: Shelley Vohr
4345
twitterLink: codebytere
46+
- name: Quil
47+
twitterLink: qteatime
48+
link: https://robotlolita.me/
49+
talk: Helping Your Compiler Help You
4450
- name: Aveline
4551
twitterLink: Avilene_

src/components/Info/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ export default ({ site, city, info, attendeesNumber }) => {
1313

1414
const date = parse(info.date, 'L', new Date())
1515
const closeRSVP =
16-
attendeesNumber >= info.maxCapacity || info.rsvpsClosed || isPast(parse(info.date))
16+
(info.maxCapacity && attendeesNumber >= info.maxCapacity) ||
17+
info.rsvpsClosed ||
18+
isPast(parse(info.date))
19+
20+
console.log(attendeesNumber >= info.maxCapacity, info.rsvpsClosed || isPast(parse(info.date)))
1721

1822
return (
1923
<>

src/components/Speakers/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Speakers = ({ noSpeak, speakers, cfp }) => {
2323
>
2424
<UnstyledLink
2525
as="a"
26-
href={`https://twitter.com/${human.twitterLink}`}
26+
href={human.link || `https://twitter.com/${human.twitterLink}`}
2727
target="_blank"
2828
rel="noopener noreferrer"
2929
title={human.name}

0 commit comments

Comments
 (0)