Skip to content
Snippets Groups Projects
Commit 25458c5f authored by Adiv's avatar Adiv
Browse files

changed routing

parent 6a9bfbd8
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@
{
<MudPaper Class="pa-4">
<MudText Typo="Typo.h5" Class="d-flex justify-content-center">
Shows similar to @SeriesInfo?.Name
Shows similar to&nbsp;<MudLink OnClick="@(() => GoToSeries(SeriesId))" Underline="Underline.None" Color="Color.Primary" Typo="Typo.h5">@SeriesInfo?.Name</MudLink>
</MudText>
<MudDivider DividerType="DividerType.FullWidth" Class="my-2"></MudDivider>
<MudGrid Style="justify-content: center !important;">
......
......@@ -25,7 +25,7 @@
<MudAppBar Bottom="true" Fixed="false" Class="@(IsDarkMode ? "home-bar-dark" : "home-bar-light")">
<MudStack Row="true" AlignItems="AlignItems.Center" Justify="Justify.Center" Style="width: 100%">
<MudButton Href="AboutUs">About</MudButton>
<MudButton>GitLab</MudButton>
<MudButton Href="GitLab">GitLab</MudButton>
<div class="flex-grow-1"></div>
<MudIconButton OnClick="@(() => IsDarkMode = !IsDarkMode)" Icon="@(IsDarkMode ? Icons.Material.Filled.DarkMode : Icons.Material.Filled.LightMode)" Class="ma-4" Variant="Variant.Outlined"/>
</MudStack>
......
......@@ -21,7 +21,7 @@
<MudAppBar Bottom="true" Fixed="false" Color="Color.Transparent">
<MudStack Row="true" AlignItems="AlignItems.Center" Justify="Justify.Center" Style="width: 100%">
<MudButton Href="AboutUs">About</MudButton>
<MudButton>GitLab</MudButton>
<MudButton Href="GitLab">GitLab</MudButton>
<div class="flex-grow-1"></div>
<MudIconButton OnClick="@(() => _isDarkMode = !_isDarkMode)" Icon="@(_isDarkMode ? Icons.Material.Filled.DarkMode : Icons.Material.Filled.LightMode)" Class="ma-4" Variant="Variant.Outlined"/>
</MudStack>
......
......@@ -26,7 +26,7 @@
<MudAppBar Bottom="true" Fixed="false" Color="Color.Transparent">
<MudStack Row="true" AlignItems="AlignItems.Center" Justify="Justify.Center" Style="width: 100%">
<MudButton Href="AboutUs">About</MudButton>
<MudButton>GitLab</MudButton>
<MudButton Href="GitLab">GitLab</MudButton>
<div class="flex-grow-1"></div>
<MudIconButton OnClick="@(() => IsDarkMode = !IsDarkMode)" Icon="@(IsDarkMode ? Icons.Material.Filled.DarkMode : Icons.Material.Filled.LightMode)" Class="ma-4" Variant="Variant.Outlined"/>
</MudStack>
......
......@@ -60,7 +60,7 @@
_searching = true;
try
{
NavigationManager.NavigateTo($"/Series?{id}", true);
NavigationManager.NavigateTo($"/Recommendations?{id}", true);
StateHasChanged();
}
catch (APIException ex)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment