Skip to content
Merged

Deploy #1798

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/frontend/components/home/view-switcher/Delves.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
}}
>
<IconifyWrapper icon={iconLibrary.faDungeon} />

{#each delves as [delve, , ranking] (delve)}
<div class="delve quality{ranking}">
{delve?.shortName ?? '??'}
Expand Down
4 changes: 2 additions & 2 deletions apps/frontend/data/delve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const delveMap: Record<number, Delve> = {
name: 'The Shadow Enclave',
shortName: 'SE',
storyRanks: {
'Basilisk Blitz': 3, // 12.1
'Infiltrate and Ameliorate': 3, // 12.1
'Mirror Shine': 0,
'Shadowy Supplies': 3,
"Traitor's Due": 3,
Expand Down Expand Up @@ -109,7 +109,7 @@ export const delveMap: Record<number, Delve> = {
storyRanks: {
"Minchi's Osseous Adventure": 3,
'Olds and Ends': 3,
'Speaking THeir Language': 3,
'Speaking Their Language': 3,
},
},
8763: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
padding-top: 0.1rem;
}
}
.flex-wrapper {
height: 1.8rem;
}
</style>

<div class="settings-block">
Expand All @@ -40,6 +43,7 @@
{@const stories = sortBy(Object.keys(delve.storyRanks))}
<div class="delve">
<h3>{delve.name}</h3>

{#each stories as story (story)}
{@const storyKey = `${poiId}:${story}`}
<div class="flex-wrapper">
Expand All @@ -56,6 +60,10 @@
</div>
</div>
{/each}

{#if stories.length < 4}
<div class="flex-wrapper">&nbsp;</div>
{/if}
</div>
{/each}
</div>
Expand Down
Loading