Compare commits
No commits in common. "570f136ef8e3c756704615f869e3eb963a9be841" and "ff9fbf50a2d090519ee90e387324efd9fba26404" have entirely different histories.
570f136ef8
...
ff9fbf50a2
@ -53,7 +53,6 @@ export default function Schedule({
|
|||||||
{isLoading && <progress value={loadingProgress}/>}
|
{isLoading && <progress value={loadingProgress}/>}
|
||||||
{isComplete && <div className="schedule">
|
{isComplete && <div className="schedule">
|
||||||
<hr/>
|
<hr/>
|
||||||
{rows.length > 0 && <>
|
|
||||||
<table>
|
<table>
|
||||||
{header.length > 0 && <thead>
|
{header.length > 0 && <thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -75,7 +74,7 @@ export default function Schedule({
|
|||||||
</tr>
|
</tr>
|
||||||
</tfoot>}
|
</tfoot>}
|
||||||
</table>
|
</table>
|
||||||
<div className="separator" />
|
<div className="separator"/>
|
||||||
<table>
|
<table>
|
||||||
<tbody>
|
<tbody>
|
||||||
{tracks.filter(track => !isTrackHidden(track)).map(track => <tr key={track.id}>
|
{tracks.filter(track => !isTrackHidden(track)).map(track => <tr key={track.id}>
|
||||||
@ -87,7 +86,6 @@ export default function Schedule({
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div className="separator" />
|
<div className="separator" />
|
||||||
</>}
|
|
||||||
{events.map(event => <section key={event.id} id={'event-'.concat(event.id)}>
|
{events.map(event => <section key={event.id} id={'event-'.concat(event.id)}>
|
||||||
<p>
|
<p>
|
||||||
<strong>{event.title}</strong>
|
<strong>{event.title}</strong>
|
||||||
@ -122,7 +120,7 @@ export default function Schedule({
|
|||||||
<i className="fa-brands fa-twitter" />
|
<i className="fa-brands fa-twitter" />
|
||||||
</a>}
|
</a>}
|
||||||
{speaker.github && <a href={'https://github.com/'.concat(speaker.github)}>
|
{speaker.github && <a href={'https://github.com/'.concat(speaker.github)}>
|
||||||
<i className="fa-brands fa-github" />
|
<i className="fa-brands fa-github"/>
|
||||||
</a>}
|
</a>}
|
||||||
</div>
|
</div>
|
||||||
<p>{speaker.biography}</p>
|
<p>{speaker.biography}</p>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user