mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 18:19:26 +02:00
Fix type on sourceComponent.
This commit is contained in:
parent
e1e079b654
commit
298bbbb52c
1 changed files with 8 additions and 1 deletions
|
@ -166,7 +166,14 @@ Rectangle {
|
|||
property string delegateUsername: model.username
|
||||
property string delegateDate: model.date
|
||||
|
||||
sourceComponent: template_chat_message
|
||||
sourceComponent: {
|
||||
if (model.type === "chat") {
|
||||
return template_chat_message;
|
||||
} else if (model.type === "notification") {
|
||||
return template_notification;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue