🐛 Bug fixes

This commit is contained in:
2024-08-06 20:00:13 +08:00
parent 1d36b30361
commit 73982f48d6
5 changed files with 19 additions and 9 deletions

View File

@ -335,10 +335,10 @@ class _PostItemState extends State<PostItem> {
Row(
children: [
Icon(
Icons.attachment,
size: 18,
Icons.file_copy,
size: 15,
color: _unFocusColor,
).paddingOnly(right: 6),
).paddingOnly(right: 5),
Text(
'attachmentHint'.trParams(
{'count': attachments.length.toString()},
@ -440,7 +440,7 @@ class _PostItemState extends State<PostItem> {
attachmentsId: attachments,
isGrid: attachments.length > 1,
),
if (widget.isShowReply && widget.isReactable)
if (widget.isShowReply || widget.isReactable)
PostQuickAction(
isShowReply: widget.isShowReply,
isReactable: widget.isReactable,