mirror of https://github.com/hykilpikonna/AquaDX
[F] Fix trailing }
parent
d1953e792a
commit
f0923c51e6
|
@ -62,6 +62,9 @@ export interface GenericGamePlaylog {
|
|||
totalCombo: number
|
||||
afterRating: number
|
||||
beforeRating: number
|
||||
isFullCombo?: boolean
|
||||
isAllPerfect?: boolean
|
||||
isAllJustice?: boolean
|
||||
}
|
||||
|
||||
export interface GenericRanking {
|
||||
|
|
|
@ -273,7 +273,7 @@
|
|||
{#if r.isAllPerfect || r.isAllJustice}
|
||||
<img src="/assets/imgs/All Perfect.png" alt="All Perfect" />
|
||||
{:else if r.isFullCombo}
|
||||
<img src="/assets/imgs/Full Combo.png" alt="Full Combo" />}
|
||||
<img src="/assets/imgs/Full Combo.png" alt="Full Combo" />
|
||||
{/if}
|
||||
<span class={`lv level-${r.level === 10 ? 3 : r.level}`}>
|
||||
{ r.notes?.[r.level === 10 ? 0 : r.level]?.lv?.toFixed(1) ?? '-' }
|
||||
|
|
Loading…
Reference in New Issue