From 7cde30a4278abcbc2c5d1ad704e16cb37c1b571c Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 21 Dec 2025 11:32:11 -0800 Subject: [PATCH] add level and element to raid tile --- src/lib/components/party/info/RaidTile.svelte | 36 ++++++++++++++----- 1 file changed, 27 insertions(+), 9 deletions(-) diff --git a/src/lib/components/party/info/RaidTile.svelte b/src/lib/components/party/info/RaidTile.svelte index 18640cb8..4ec0f662 100644 --- a/src/lib/components/party/info/RaidTile.svelte +++ b/src/lib/components/party/info/RaidTile.svelte @@ -1,6 +1,8 @@ {#if raid}
- {raidName()} - {#if raid.group?.difficulty} - Lv. {raid.group.difficulty} - {/if} + +
+ {raidName()} + Lv. {raid.level} ยท {elementLabel} +
{:else} No raid selected @@ -31,22 +36,35 @@