fix spelling added Ref to Att for clarity

This commit is contained in:
Frede Hundewadt 2023-11-08 19:03:22 +01:00
parent b376ee2193
commit c71b585362
3 changed files with 4 additions and 4 deletions

View file

@ -165,7 +165,7 @@ else
<ValidationMessage For="@(() => _activity.Phone)"></ValidationMessage> <ValidationMessage For="@(() => _activity.Phone)"></ValidationMessage>
</div> </div>
<label for="yourRef" class="col-sm-2 col-form-label-sm">Att.</label> <label for="yourRef" class="col-sm-2 col-form-label-sm">Att/Ref</label>
<div class="col-sm-4"> <div class="col-sm-4">
<InputText id="yourRef" class="form-control" @bind-Value="_activity.YourRef"/> <InputText id="yourRef" class="form-control" @bind-Value="_activity.YourRef"/>
<ValidationMessage For="@(() => _activity.YourRef)"></ValidationMessage> <ValidationMessage For="@(() => _activity.YourRef)"></ValidationMessage>

View file

@ -1,8 +1,8 @@
{ {
"appInfo": { "appInfo": {
"name": "Wonky Online", "name": "Wonky Online",
"version": "298.0", "version": "299.0",
"rc": true, "rc": false,
"sandBox": true, "sandBox": true,
"image": "grumpy-coder.png", "image": "grumpy-coder.png",
"sdk": "dotnet 8.0" "sdk": "dotnet 8.0"

View file

@ -46,7 +46,7 @@ public class ActivityDto
[MaxLength(100, ErrorMessage = "Du kan højst bruge 100 tegn")] [MaxLength(100, ErrorMessage = "Du kan højst bruge 100 tegn")]
public string Name { get; set; } = ""; public string Name { get; set; } = "";
[Required(ErrorMessage = "Byanvn skal udfyldes")] [Required(ErrorMessage = "Bynavn skal udfyldes")]
[MaxLength(30, ErrorMessage = "Du kan højst bruge 30 tegn")] [MaxLength(30, ErrorMessage = "Du kan højst bruge 30 tegn")]
public string City { get; set; } = ""; public string City { get; set; } = "";