Skip to content

Commit

Permalink
Typo in Component folder name changed
Browse files Browse the repository at this point in the history
  • Loading branch information
gill-orange committed Oct 20, 2019
1 parent 909c909 commit 2b51cc7
Show file tree
Hide file tree
Showing 14 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@
<div id="@elementId" style="height: 100%; width: 100%;"></div>

@code {

string elementId = $"map-{Guid.NewGuid().ToString("D")}";

[Parameter] public double Zoom { get; set; }
[Parameter] public List<Marker> Markers { get; set; }
[Parameter]
public double Zoom { get; set; }

[Parameter]
public List<Marker> Markers { get; set; }

protected async override Task OnAfterRenderAsync(bool firstRender)
protected override async Task OnAfterRenderAsync(bool firstRender)
{
await JSRuntime.InvokeVoidAsync(
"deliveryMap.showOrUpdate",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
namespace BethanysPieShopHRM.ComponentsLibrary.Map

{
public class Marker
{
Expand Down
2 changes: 1 addition & 1 deletion BethanysPieShopHRM.Server/BethanysPieShopHRM.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\BethanysPieShop.ComponentsLibrary\BethanysPieShopHRM.ComponentsLibrary.csproj" />
<ProjectReference Include="..\BethanysPieShopHRM.ComponentsLibrary\BethanysPieShopHRM.ComponentsLibrary.csproj" />
<ProjectReference Include="..\BethanysPieShopHRM.Shared\BethanysPieShopHRM.Shared.csproj" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion BethanysPieShopHRM.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BethanysPieShopHRM.Api", "B
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BethanysPieShopHRM.Shared", "BethanysPieShopHRM.Shared\BethanysPieShopHRM.Shared.csproj", "{369581F2-82E5-45E8-BF3C-9E1CC83DD769}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BethanysPieShopHRM.ComponentsLibrary", "BethanysPieShop.ComponentsLibrary\BethanysPieShopHRM.ComponentsLibrary.csproj", "{BD196906-CA10-437E-BBCC-A8BC2A954F13}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BethanysPieShopHRM.ComponentsLibrary", "BethanysPieShopHRM.ComponentsLibrary\BethanysPieShopHRM.ComponentsLibrary.csproj", "{BD196906-CA10-437E-BBCC-A8BC2A954F13}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down

0 comments on commit 2b51cc7

Please sign in to comment.