Skip to content

Commit fd12fd4

Browse files
committed
Only show "no mods found" if done loading
1 parent 1d92274 commit fd12fd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SporeCommunity.ModBrowser.Blazor/Pages/Index.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<SupportInformation />
1616
<p>@errorMessage</p>
1717
}
18-
else if (searchTerm.Length > 0 && mods.Count == 0)
18+
else if (!isLoading && mods.Count == 0)
1919
{
2020
<p>No mods were found. Try using different search terms.</p>
2121
}

0 commit comments

Comments
 (0)