RaidLogs now opens a new Tab

This commit is contained in:
t.ruspekhofer 2022-03-17 23:10:09 +01:00
parent 2dfcf13f79
commit 2d8a0850eb

View file

@ -33,7 +33,7 @@
@foreach(string logFolder in _availabeLogs) @foreach(string logFolder in _availabeLogs)
{ {
string path = $"{LOGS}/{_selectedLogFolder}/{logFolder}/index.html"; string path = $"{LOGS}/{_selectedLogFolder}/{logFolder}/index.html";
<NavLink class="nav-link" href="@path"> @logFolder </NavLink> <NavLink class="nav-link" href="@path" target="blank"> @logFolder </NavLink>
} }