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.
2 parents 62d2293 + 9acfb05 commit 11d6a3cCopy full SHA for 11d6a3c
src/MatBlazor/Components/MatTable/MatTable.razor
@@ -458,7 +458,7 @@
458
459
foreach (var item in items)
460
{
461
- var values = properties.Where(x => x.GetValue(item, null).ToString() != null).Select(x => x.GetValue(item, null).ToString());
+ var values = properties.Where(x => x.GetValue(item, null)?.ToString() != null).Select(x => x.GetValue(item, null).ToString());
462
463
if (!values.Any())
464
0 commit comments