mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-02 18:18:39 +00:00
Fix semicolon appearing after photos on UserPage
This commit is contained in:
parent
c46cc1df5f
commit
8289e6c04e
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
||||||
@page "/user/{userId:int}"
|
@page "/user/{userId:int}"
|
||||||
|
@using System.IO
|
||||||
|
@using System.Web
|
||||||
@using LBPUnion.ProjectLighthouse.Types
|
@using LBPUnion.ProjectLighthouse.Types
|
||||||
@using LBPUnion.ProjectLighthouse.Types.Profiles
|
@using LBPUnion.ProjectLighthouse.Types.Profiles
|
||||||
@using LBPUnion.ProjectLighthouse.Types.Settings
|
@using LBPUnion.ProjectLighthouse.Types.Settings
|
||||||
@using System.Web;
|
|
||||||
@using System.IO;
|
|
||||||
@model LBPUnion.ProjectLighthouse.Pages.UserPage
|
@model LBPUnion.ProjectLighthouse.Pages.UserPage
|
||||||
|
|
||||||
@{
|
@{
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
@foreach (Photo photo in Model.Photos)
|
@foreach (Photo photo in Model.Photos)
|
||||||
{
|
{
|
||||||
<div class="eight wide column">
|
<div class="eight wide column">
|
||||||
@await Html.PartialAsync("Partials/PhotoPartial", photo);
|
@await Html.PartialAsync("Partials/PhotoPartial", photo)
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue