File attachment UI work

This commit is contained in:
TheXamlGuy
2024-07-24 21:51:51 +01:00
parent e28e0d615a
commit c6f71c3d0b
13 changed files with 103 additions and 18 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ public partial class CreateCommentEntryViewModel(IServiceProvider provider,
[RelayCommand]
private void Invoke()
{
Publisher.Publish(Create.As(new Comment { Text = Value, DateTime = DateTimeOffset.Now }));
Publisher.Publish(Create.As(new Comment { Text = Value, Created = DateTimeOffset.Now }));
Value = null;
}
}