Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi committed Oct 15, 2024
2 parents 6404185 + acd79ee commit 853d7ae
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ protected virtual async ValueTask DisposeAsync(bool disposing)
if (disposing)
{
await PrerenderStateService.DisposeAsync();
cts.Cancel();
cts.Dispose();
cts?.Cancel();
cts?.Dispose();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ private async Task OnCultureChanged(string? cultureName)

public void Dispose()
{
unsubscribeUpdateBackLink();
unsubscribeUpdateBackLink?.Invoke();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ protected override async ValueTask DisposeAsync(bool disposing)
{
await base.DisposeAsync(disposing);

unsubscribePageTitleChanged();
unsubscribePageTitleChanged?.Invoke();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ protected override async ValueTask DisposeAsync(bool disposing)
{
await base.DisposeAsync(disposing);

unsubscribeUerDataUpdated();
unsubscribeUerDataUpdated?.Invoke();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public void Dispose()

authManager.AuthenticationStateChanged -= AuthenticationStateChanged;

unsubscribeThemeChange();
unsubscribeCultureChange();
unsubscribeThemeChange?.Invoke();
unsubscribeCultureChange?.Invoke();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<BitStack HorizontalAlign="BitAlignment.Center">
<BitText Typography="BitTypography.H5">bit Boilerplate</BitText>
<BitText Typography="BitTypography.Body1" Align="BitTextAlign.Center">
@Localizer[nameof(AppStrings.BitBoilerplateMessage)]
@Localizer[nameof(AppStrings.BitProjectTemplateMessage)]
</BitText>
<BitButton Variant="BitVariant.Outline" Href="https://youtube.com">
@Localizer[nameof(AppStrings.WatchVideo)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,6 @@ private async Task SendTfaToken()

public void Dispose()
{
unsubscribeIdentityHeaderBackLinkClicked();
unsubscribeIdentityHeaderBackLinkClicked?.Invoke();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@
<data name="BitBlazorUIMessage" xml:space="preserve">
<value>مجموعه ای از کمپوننتهای کارا، ساده و زیبای بلیزری</value>
</data>
<data name="BitBoilerplateMessage" xml:space="preserve">
<data name="BitProjectTemplateMessage" xml:space="preserve">
<value>تمپلیت پروژه ای فول امکانات که همه جا کار میکند</value>
</data>
<data name="InvalidConfirmationTokenMessage" xml:space="preserve">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@
<data name="BitBlazorUIMessage" xml:space="preserve">
<value>Krachtige, eenvoudig aan te passen en mooie Blazor-componenten</value>
</data>
<data name="BitBoilerplateMessage" xml:space="preserve">
<data name="BitProjectTemplateMessage" xml:space="preserve">
<value>Een veelzijdige .NET-projectsjabloon die overal naadloos werkt</value>
</data>
<data name="DescriptionMetaTagValue" xml:space="preserve">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@
<data name="BitBlazorUIMessage" xml:space="preserve">
<value>A set of performant, easy-to-customize and beautiful Blazor components</value>
</data>
<data name="BitBoilerplateMessage" xml:space="preserve">
<data name="BitProjectTemplateMessage" xml:space="preserve">
<value>A feature-rich .NET project template that works everywhere seamlessly</value>
</data>
<data name="DescriptionMetaTagValue" xml:space="preserve">
Expand Down

0 comments on commit 853d7ae

Please sign in to comment.