Fix web-app

This commit is contained in:
Christopher J. Walker 2024-02-22 17:48:36 -05:00
parent 9b1e8efe36
commit 0ab78242cb
6 changed files with 8 additions and 8 deletions

4
.gitignore vendored
View File

@ -242,8 +242,8 @@ ServiceFabricBackup/
*.rptproj.bak
# SQL Server files
*.mdf
*.ldf
# *.mdf
# *.ldf
*.ndf
# Business Intelligence projects

View File

@ -1,4 +1,4 @@
@API_HostAddress = http://localhost:5242
@API_HostAddress = http://localhost:54730
GET {{API_HostAddress}}/weatherforecast/
Accept: application/json

View File

@ -14,7 +14,7 @@
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:5242",
"applicationUrl": "http://localhost:54730",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
@ -24,7 +24,7 @@
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "https://localhost:7234;http://localhost:5242",
"applicationUrl": "https://localhost:7234;http://localhost:54730",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}

BIN
Api/data/BrainWare.mdf Normal file

Binary file not shown.

BIN
Api/data/BrainWare_log.ldf Normal file

Binary file not shown.

View File

@ -11,10 +11,10 @@
</div>
<ul>
<li *ngFor="let order of orders">
{{order.Description}} (Total: ${{order.OrderTotal}})
{{order.dscription}} (Total: ${{order.orderTotal}})
<ul>
<li *ngFor="let orderProduct of order.OrderProducts">
{{orderProduct.Product.Name}} ({{orderProduct.Quantity}} &#64; ${{orderProduct.Price}}/ea)
<li *ngFor="let orderProduct of order.orderProducts">
{{orderProduct.product.name}} ({{orderProduct.quantity}} &#64; ${{orderProduct.price}}/ea)
</li>
</ul>
</li>