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 70d5458 commit 09df92cCopy full SHA for 09df92c
src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumn.razor.cs
@@ -41,9 +41,9 @@ protected override void OnInitialized()
41
/// </summary>
42
/// <param name="d"></param>
43
/// <returns></returns>
44
- private static Task<string> IntFormatter(object? d)
+ private static Task<string?> IntFormatter(object d)
45
{
46
- var ret = "";
+ string? ret = null;
47
if (d is TableColumnContext<Foo, object?> data && data.Value != null)
48
49
var val = (int)data.Value;
0 commit comments