no message

This commit is contained in:
Diego
2025-07-04 09:01:31 +08:00
parent 6ae44ccf58
commit e270b0c4f6

View File

@@ -13,6 +13,7 @@ using BootstrapBlazor.Components;
using System.Collections.Concurrent;
using System.Reflection;
using System.Security.Cryptography.X509Certificates;
using TouchSocket.Core;
@@ -141,6 +142,10 @@ Dictionary<long, Channel> channelDicts)
foreach (var item in propertyInfos)
{
if (item.Name == nameof(Variable.Id))
{
continue;
}
var desc = type.GetPropertyDisplayName(item.Name);
row.TryAdd(desc ?? item.Name, item.GetValue(variable)?.ToString());
}