Merge branch 'map-sorting' into 'master'

feat: map sorting and separate filter page

See merge request gk1623/drp-48!23
This commit is contained in:
2025-06-13 12:57:01 +00:00
9 changed files with 519 additions and 243 deletions

View File

@@ -141,7 +141,7 @@
<div class="compulsoryContainer"><CompulsoryTags {space} /></div>
{#if space.tags.length > 0}
<div class="tagContainer">
{#each space.tags as tag (tag)}
{#each space.tags as tag, idx (tag + idx)}
<span class="tag">
{tag}
</span>
@@ -181,7 +181,7 @@
{#if place.name}
{place.name} <br />
{/if}
{#each place.formatted_address?.split(",") || [] as line (line)}
{#each place.formatted_address?.split(",") || [] as line, idx (line + idx)}
{line.trim()} <br />
{/each}
</p>

View File

@@ -370,7 +370,7 @@
</div>
<label for="openingTimes">Opening times (Optional):</label>
<div class="allDaysTiming">
{#each studySpaceData.opening_times as opening_time, index (index)}
{#each studySpaceData.opening_times as opening_time, index (opening_time)}
<OpeningTimesDay
{index}
bind:openingValue={opening_time.opens_at}