Skip to content

Commit

Permalink
Merge pull request #278 from ClimateTown/patch/various
Browse files Browse the repository at this point in the history
YouTube filter bugfix and wording
  • Loading branch information
VeckoTheGecko authored Jun 19, 2023
2 parents 66220c4 + a8c4d58 commit c612ae2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@
"avatar_url": "https://avatars.githubusercontent.com/u/132729879?v=4",
"profile": "https://github.com/JarrodBaniqued",
"contributions": [
"content"
"content",
"bug"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Thanks go to these wonderful people ([emoji key](https://allcontributors.org/doc
<td align="center" valign="top" width="14.28%"><a href="https://github.com/azebramoomoo"><img src="https://avatars.githubusercontent.com/u/121310825?v=4?s=60" width="60px;" alt="azebramoomoo"/><br /><sub><b>azebramoomoo</b></sub></a><br /><a href="#content-azebramoomoo" title="Content">🖋</a> <a href="#design-azebramoomoo" title="Design">🎨</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Jacobjeevan"><img src="https://avatars.githubusercontent.com/u/40040905?v=4?s=60" width="60px;" alt="Jacob John Jeevan"/><br /><sub><b>Jacob John Jeevan</b></sub></a><br /><a href="https://github.com/ClimateTown/knowledge-hub/commits?author=Jacobjeevan" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Morzaram"><img src="https://avatars.githubusercontent.com/u/70202379?v=4?s=60" width="60px;" alt="Chris King"/><br /><sub><b>Chris King</b></sub></a><br /><a href="https://github.com/ClimateTown/knowledge-hub/commits?author=Morzaram" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JarrodBaniqued"><img src="https://avatars.githubusercontent.com/u/132729879?v=4?s=60" width="60px;" alt="Jarrod Baniqued"/><br /><sub><b>Jarrod Baniqued</b></sub></a><br /><a href="#content-JarrodBaniqued" title="Content">🖋</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JarrodBaniqued"><img src="https://avatars.githubusercontent.com/u/132729879?v=4?s=60" width="60px;" alt="Jarrod Baniqued"/><br /><sub><b>Jarrod Baniqued</b></sub></a><br /><a href="#content-JarrodBaniqued" title="Content">🖋</a> <a href="https://github.com/ClimateTown/knowledge-hub/issues?q=author%3AJarrodBaniqued" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://daniellemlbastien.com/"><img src="https://avatars.githubusercontent.com/u/4835191?v=4?s=60" width="60px;" alt="Danielle Bastien"/><br /><sub><b>Danielle Bastien</b></sub></a><br /><a href="#a11y-dmlb" title="Accessibility">️️️️♿️</a> <a href="https://github.com/ClimateTown/knowledge-hub/commits?author=dmlb" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tutterown"><img src="https://avatars.githubusercontent.com/u/1977859?v=4?s=60" width="60px;" alt="Nick Tutterow"/><br /><sub><b>Nick Tutterow</b></sub></a><br /><a href="https://github.com/ClimateTown/knowledge-hub/commits?author=tutterown" title="Code">💻</a> <a href="#content-tutterown" title="Content">🖋</a></td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
>
<h3>YouTube Feed</h3>
<div class="my-3 text-gray-500">
A feed of Climate Town and various other climate YouTuber videos, right
here in the Knowledge Hub!
A feed of Climate Town and various other popular climate YouTuber videos,
right here in the Knowledge Hub!
</div>
<a
href="{base}/youtube"
Expand Down
6 changes: 4 additions & 2 deletions src/routes/youtube/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,14 @@
<div class="my-3">
Enjoy thoughtful climate-related discussions from your favorite climate
YouTubers. The feed is updated daily at midnight and noon UTC, and showcases
the five latest long-form videos from each YouTuber.
the latest long-form videos from each YouTuber.
</div>

<Collapsible label="Filter">
<form
on:submit|preventDefault={filterResources(displayedVideos, channelArr)}
on:submit|preventDefault={() => {
displayedVideos = filterResources(videoData, channelArr);
}}
class="p-4 space-y-4"
>
<!-- <label for="search">Search</label> -->
Expand Down

0 comments on commit c612ae2

Please sign in to comment.