Commit 39e83ddb authored by Ronan Abhamon's avatar Ronan Abhamon

fix(ui/modules/Linphone/Chat/IncomingMessage): index can be -1

parent 34fbdac7
...@@ -26,7 +26,7 @@ RowLayout { ...@@ -26,7 +26,7 @@ RowLayout {
// The avatar is only visible for the first message of a incoming messages sequence. // The avatar is only visible for the first message of a incoming messages sequence.
visible: { visible: {
if (index === 0) { if (index <= 0) {
return true return true
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment