Skip to content

Commit e3b0797

Browse files
authored
Merge branch 'ep2025' into ep2025-sw
2 parents 3edfb6e + 7db360a commit e3b0797

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/content/pages/community-activities.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ This year, we are dedicating a two-hour slot in the Open Spaces to all community
2424
importantly, it's a chance to explore how the EuroPython Society can support you in achieving your
2525
goals and addressing your current challenges.
2626

27-
* Room: TBD
28-
* Time: TBD
27+
* Room: 223+224
28+
* Time: Friday 18th, 12:00h - 13:00h
2929

3030
![](./images/pyo-open-space.jpg)
3131

File renamed without changes.

src/pages/sprints.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ const sprints = await getCollection("sprints", ({ data }) => {
3030
<label for="level-filter" class="font-semibold text-gray-700 text-lg">Python Level:</label>
3131
<select id="level-filter" class="px-4 py-2 border border-gray-300 rounded-lg bg-white text-lg min-w-[150px] focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
3232
<option value="">All Levels</option>
33-
<option value="Any">Any</option>
3433
<option value="Beginner">Beginner</option>
3534
<option value="Intermediate">Intermediate</option>
3635
<option value="Advanced">Advanced</option>
@@ -87,7 +86,7 @@ const sprints = await getCollection("sprints", ({ data }) => {
8786
const cardElement = card as HTMLElement;
8887
const pythonLevel = cardElement.getAttribute('data-python-level');
8988

90-
const levelMatch = !selectedLevel || pythonLevel === selectedLevel;
89+
const levelMatch = !selectedLevel || pythonLevel === selectedLevel || pythonLevel === 'Any';
9190

9291
if (levelMatch) {
9392
cardElement.style.display = 'block';

0 commit comments

Comments
 (0)