We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e4309e commit d8afc8bCopy full SHA for d8afc8b
admin/TwoWeeksReady.Admin/Pages/HazardInfos/Details.razor
@@ -38,7 +38,7 @@ else
38
<InputSelect id="iconUrl" class="form-control" @bind-Value="Hazard.IconUrl">
39
@foreach(var image in clientImages.Images)
40
{
41
- <option value="@image">@image</option>
+ <option value="@image.RelativePath">@image.RelativePath</option>
42
}
43
</InputSelect>
44
<img src="@clientImages.ToAbsolutePath(Hazard.IconUrl)"/>
@@ -49,7 +49,7 @@ else
49
<InputSelect id="mediaUrl" class="form-control" @bind-Value="Hazard.MediaUrl">
50
51
52
53
54
55
<img src="@clientImages.ToAbsolutePath(Hazard.MediaUrl)"/>
0 commit comments