mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 00:05:16 +00:00
Fix issue that prevented to update content of empty posts
This commit is contained in:
@ -570,7 +570,7 @@ class _PostTileState extends State<PostTile> {
|
||||
context: context,
|
||||
title: tr("Update post content"),
|
||||
message: tr("Please enter message content: "),
|
||||
defaultValue: widget.post.content,
|
||||
defaultValue: widget.post.content == null ? "" : widget.post.content,
|
||||
hint: tr("Post content"),
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user