* Changed port of API

* Changed filtering and grid headers
* Added TranslatedStatus field
This commit is contained in:
2025-01-29 17:12:18 +01:00
parent 40cd96460e
commit 6df1857246
4 changed files with 29 additions and 26 deletions

View File

@@ -6,7 +6,7 @@ var builder = WebApplication.CreateBuilder(args);
builder.Services.AddBlazorBootstrap();
string apiUrl = builder.Configuration["ApiUrl"] ?? "http://localhost:5000"; // Ustawienie na adres twojego API
string apiUrl = builder.Configuration["ApiUrl"] ?? "http://localhost:5555"; // Ustawienie na adres twojego API
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(apiUrl) });
// Add services to the container.