Hide reply chat bubble if original message is missing
This commit is contained in:
parent
4a4d5f5d74
commit
264865fdc3
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@
|
|||
android:layout_gravity="@{data.chatMessage.outgoing ? Gravity.RIGHT : Gravity.LEFT}"
|
||||
app:data="@{data.replyData}"
|
||||
app:clickListener="@{replyClickListener}"
|
||||
android:visibility="@{data.chatMessage.reply ? View.VISIBLE : View.GONE, default=gone}" />
|
||||
android:visibility="@{data.replyData != null ? View.VISIBLE : View.GONE, default=gone}" />
|
||||
|
||||
<com.google.android.flexbox.FlexboxLayout
|
||||
android:layout_width="wrap_content"
|
||||
|
|
Loading…
Reference in a new issue