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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user