@@ -207,6 +207,10 @@ namespace InABox.DynamicGrid
protected override string[] RetrieveValue()
{
+ if(_value is null || _value.Length == 0 && !History.Text.IsNullOrWhiteSpace())
+ {
+ return [$"{DateTime.Now:yyyy-MM-dd HH:mm:ss} {ClientFactory.UserID}: {History.Text}"];
+ }
return _value;
}