This commit is contained in:
2026-07-18 15:21:20 -04:00
parent 6062d5b60c
commit 74f065e0f5
51 changed files with 634 additions and 285 deletions
@@ -1,7 +1,5 @@
@page "/syndicate-pairings"
@using Model
@using Chrono.Components
@inject NavigationManager Navigation
<HeadContent>
<meta name="description" content="Explore all syndicate pairings in Chrono CCG."/>
@@ -40,9 +38,9 @@
</div>
</div>
<SyndicatePairDialog Doc="selectedDoc" OnClose="ClosePairing" OnNavigate="HandleNavigate" />
<CardDialog Card="selectedCard" OnClose="CloseCard" OnNavigate="HandleNavigate" />
<GenericDocDialog Doc="selectedGenericDoc" OnClose="CloseGenericDoc" />
<SyndicatePairDialog Doc="selectedDoc" OnClose="ClosePairing" OnNavigate="HandleNavigate"/>
<CardDialog Card="selectedCard" OnClose="CloseCard" OnNavigate="HandleNavigate"/>
<GenericDocDialog Doc="selectedGenericDoc" OnClose="CloseGenericDoc"/>
@code {
private List<DocData> pairings = [];
@@ -91,6 +89,7 @@
{
selectedGenericDoc = new DocData { Title = card.Name, Content = card.Description ?? "", Category = card.Category };
}
StateHasChanged();
return;
}
@@ -102,4 +101,5 @@
StateHasChanged();
}
}
}