We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b48df commit e772b13Copy full SHA for e772b13
src/BootstrapBlazor.Server/Services/CodeSnippetService.cs
@@ -62,7 +62,7 @@ public async Task<string> GetCodeAsync(string codeFile)
62
{
63
// codeFile = ajax.razor.cs
64
var segs = codeFile.Split('.');
65
- var key = segs[0];
+ var key = segs[0].ToLowerInvariant();
66
var typeName = SourceCodes.TryGetValue(key, out var value) ? value : string.Empty;
67
if (!string.IsNullOrEmpty(typeName))
68
0 commit comments