Add tabbed DataTables with new Production, Vitality, and Movement tables
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using System.Globalization;
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using Blazor.Analytics;
|
||||
using Blazored.LocalStorage;
|
||||
using IGP;
|
||||
using Microsoft.AspNetCore.Components.Web;
|
||||
@@ -38,6 +39,12 @@ builder.Services.AddBlazoredLocalStorageAsSingleton(config =>
|
||||
config.JsonSerializerOptions.WriteIndented = false;
|
||||
});
|
||||
|
||||
#if DEBUG
|
||||
builder.Services.AddGoogleAnalytics("G-S96LW7TVFY");
|
||||
#else
|
||||
builder.Services.AddGoogleAnalytics(builder.Configuration["GATag"]);
|
||||
#endif
|
||||
|
||||
builder.Services.AddScoped<INavigationService, NavigationService>();
|
||||
builder.Services.AddScoped<IKeyService, KeyService>();
|
||||
builder.Services.AddScoped<IImmortalSelectionService, ImmortalSelectionService>();
|
||||
@@ -73,6 +80,7 @@ builder.Services.AddScoped(sp => new HttpClient
|
||||
builder.Services.AddMudServices();
|
||||
|
||||
|
||||
|
||||
await builder.Build().RunAsync();
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user