Fix type on sourceComponent.

This commit is contained in:
armored-dragon 2024-10-29 15:25:45 -05:00
parent e1e079b654
commit 298bbbb52c
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -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;
}
}
}
}
}