feat(web): open in map view (#11592)

This commit is contained in:
Jason Rasmussen
2024-08-05 11:25:53 -04:00
committed by GitHub
parent 54d2c12fff
commit 94da5942bd
4 changed files with 25 additions and 7 deletions
@@ -111,9 +111,9 @@
{#if $featureFlags.loaded && $featureFlags.map}
<UserPageLayout title={data.meta.title}>
<div class="isolate h-full w-full">
<Map bind:mapMarkers bind:showSettingsModal on:selected={(event) => onViewAssets(event.detail)} />
</div></UserPageLayout
>
<Map hash bind:mapMarkers bind:showSettingsModal on:selected={(event) => onViewAssets(event.detail)} />
</div>
</UserPageLayout>
<Portal target="body">
{#if $showAssetViewer}
{#await import('../../../../../lib/components/asset-viewer/asset-viewer.svelte') then { default: AssetViewer }}