diff --git a/TaikoWebUI/Pages/TaikoMode.razor b/TaikoWebUI/Pages/TaikoMode.razor index 375f727..185e815 100644 --- a/TaikoWebUI/Pages/TaikoMode.razor +++ b/TaikoWebUI/Pages/TaikoMode.razor @@ -89,7 +89,7 @@ - @((context.Item.ShowAiData == true) ? "Hide" : "Show") + @(context.Item.ShowAiData ? "Hide" : "Show") @@ -104,7 +104,29 @@ - + + + Section No + Is win? + Section Score + Section Crown + Section Good Count + Section Ok Count + Section Miss Count + Section Drumroll Count + + + @aiSectionContext.SectionIndex + @aiSectionContext.IsWin + @aiSectionContext.Score + @aiSectionContext.Crown + @aiSectionContext.GoodCount + @aiSectionContext.OkCount + @aiSectionContext.MissCount + @aiSectionContext.DrumrollCount + + }