mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
Fix bad check
This commit is contained in:
parent
67c217715a
commit
32aa73a951
@ -566,7 +566,7 @@ class _PostTileState extends State<PostTile> {
|
|||||||
title: tr("Update post content"),
|
title: tr("Update post content"),
|
||||||
message: tr("Please enter message content: "),
|
message: tr("Please enter message content: "),
|
||||||
defaultValue:
|
defaultValue:
|
||||||
widget.post.content.isNull == null ? "" : widget.post.content.content,
|
widget.post.content.isNull ? "" : widget.post.content.content,
|
||||||
hint: tr("Post content"),
|
hint: tr("Post content"),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user