Fix blank labels on slot page & blank creator

This commit is contained in:
jvyden 2021-11-30 19:06:30 -05:00
commit 841692addb
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@
<div class="eight wide column">
<div class="ui red segment">
<h2>Tags</h2>
@foreach (string label in Model.Slot.AuthorLabels.Split(","))
@foreach (string label in Model.Slot.AuthorLabels.Split(",").Where(label => !string.IsNullOrEmpty(label)))
{
<div class="ui blue label">@label.Replace("LABEL_", "")</div>
}

View file

@ -17,7 +17,7 @@ namespace LBPUnion.ProjectLighthouse.Pages
public async Task<IActionResult> OnGet([FromRoute] int id)
{
Slot? slot = await this.Database.Slots.FirstOrDefaultAsync(s => s.SlotId == id);
Slot? slot = await this.Database.Slots.Include(s => s.Creator).FirstOrDefaultAsync(s => s.SlotId == id);
if (slot == null) return this.NotFound();
this.Slot = slot;