mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-12 13:27:28 +08:00
[F] Fix trailing }
This commit is contained in:
@@ -62,6 +62,9 @@ export interface GenericGamePlaylog {
|
|||||||
totalCombo: number
|
totalCombo: number
|
||||||
afterRating: number
|
afterRating: number
|
||||||
beforeRating: number
|
beforeRating: number
|
||||||
|
isFullCombo?: boolean
|
||||||
|
isAllPerfect?: boolean
|
||||||
|
isAllJustice?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface GenericRanking {
|
export interface GenericRanking {
|
||||||
|
|||||||
@@ -273,7 +273,7 @@
|
|||||||
{#if r.isAllPerfect || r.isAllJustice}
|
{#if r.isAllPerfect || r.isAllJustice}
|
||||||
<img src="/assets/imgs/All Perfect.png" alt="All Perfect" />
|
<img src="/assets/imgs/All Perfect.png" alt="All Perfect" />
|
||||||
{:else if r.isFullCombo}
|
{: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}
|
{/if}
|
||||||
<span class={`lv level-${r.level === 10 ? 3 : r.level}`}>
|
<span class={`lv level-${r.level === 10 ? 3 : r.level}`}>
|
||||||
{ r.notes?.[r.level === 10 ? 0 : r.level]?.lv?.toFixed(1) ?? '-' }
|
{ r.notes?.[r.level === 10 ? 0 : r.level]?.lv?.toFixed(1) ?? '-' }
|
||||||
|
|||||||
Reference in New Issue
Block a user