Skip to content

Commit e7000b0

Browse files
authored
Fix routing to plot folder tags (#1518)
1 parent fd15760 commit e7000b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/JoinRpg.Portal/Views/Shared/DisplayTemplates/PlotFolderListItemViewModel.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<br />
1010
foreach (var tagName in Model.TagNames)
1111
{
12-
@Html.ActionLink("#" + tagName, "ByTag", "Plot", new {Model.ProjectId, tagName}, null)
12+
<a asp-controller="PlotList" asp-action="ByTag" asp-route-ProjectId="@Model.ProjectId" asp-route-TagName="@tagName">#@tagName</a>
1313
<text> </text>
1414
}
15-
}
15+
}

0 commit comments

Comments
 (0)