Gestiti allegati da galleria e fotocamera e aggiunto sentry

This commit is contained in:
2026-02-17 10:23:46 +01:00
parent c1a133c61e
commit 544c9e8237
13 changed files with 220 additions and 76 deletions

View File

@@ -2,21 +2,5 @@
@inject IGenericSystemService GenericSystemService
<div class="app-version">
<span>@Version</span>
<span>@GenericSystemService.GetCurrentAppVersion()</span>
</div>
@code
{
private string Version { get; set; } = "";
protected override void OnInitialized()
{
#if DEBUG
Version = $"v{GenericSystemService.GetCurrentAppVersion()} [DEBUG]";
#else
Version = $"v{GenericSystemService.GetCurrentAppVersion()}";
#endif
StateHasChanged();
}
}