Fixed bug with editing manual entries.

This commit is contained in:
Daniel Wathen
2023-01-11 12:52:21 -07:00
parent f23c7136c0
commit 7bd530e72b
3 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@ namespace ReportingServices.UI.Controllers
public ProductionReportController(ILogger<ProductionReportController> logger)
{
_logger = logger;
_baseDBUrl = "http://localhost:50201/api/";
_baseDBUrl = "https://localhost:7196/api/";
_logger.LogInformation("Base Database Address: {baseUrl}", _baseDBUrl);
}