Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit df28e4e

Browse files
committed
Invert Lat/Long order on Marketing Campaign Views
1 parent 0e6c816 commit df28e4e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/Web/WebMVC/Views/Campaigns/Index.cshtml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,15 @@
3030

3131
<form class="form-inline" asp-action="CreateNewUserLocation" method="post">
3232
<label class="sr-only" for="longitudeInput">Name</label>
33+
3334
<div class="input-group mb-2 mr-sm-2 mb-sm-0">
34-
<div class="input-group-addon">Lon</div>
35-
<input type="text" class="form-control mb-2 mr-sm-2 mb-sm-0" id="longitudeInput" asp-for="Lon" placeholder="Longitude">
35+
<div class="input-group-addon">Lat</div>
36+
<input type="text" class="form-control mb-2 mr-sm-2 mb-sm-0" id="latitudeInput" asp-for="Lat" placeholder="Latitude">
3637
</div>
3738

3839
<div class="input-group mb-2 mr-sm-2 mb-sm-0">
39-
<div class="input-group-addon">Lat</div>
40-
<input type="text" class="form-control mb-2 mr-sm-2 mb-sm-0" id="latitudeInput" asp-for="Lat" placeholder="Latitude">
40+
<div class="input-group-addon">Lon</div>
41+
<input type="text" class="form-control mb-2 mr-sm-2 mb-sm-0" id="longitudeInput" asp-for="Lon" placeholder="Longitude">
4142
</div>
4243

4344
<div class="input-group mb-2 mr-sm-2 mb-sm-0 col-md-2">

0 commit comments

Comments
 (0)