fix(StatusMessage): fix forgotten enum value in StatusMessage.OutgoingStatus

- also fix typo in the default value of `outgoingStatus`
This commit is contained in:
Lukáš Tinkl 2024-10-01 17:04:18 +02:00 committed by Lukáš Tinkl
parent 252061d8e8
commit 3025ac9208
1 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
import QtQuick 2.14 import QtQuick 2.15
import QtQuick.Layouts 1.14 import QtQuick.Layouts 1.15
import QtQuick.Controls 2.14 import QtQuick.Controls 2.15
import StatusQ.Core 0.1 import StatusQ.Core 0.1
import StatusQ.Core.Theme 0.1 import StatusQ.Core.Theme 0.1
@ -34,7 +34,8 @@ Control {
Sending, Sending,
Sent, Sent,
Delivered, Delivered,
Expired Expired,
FailedResending
} }
property list<Item> quickActions property list<Item> quickActions
@ -60,7 +61,7 @@ Control {
property bool isPinned: false property bool isPinned: false
property string pinnedBy: "" property string pinnedBy: ""
property string resendError: "" property string resendError: ""
property int outgoingStatus: StatusMessage.OutgointStatus.Unknown property int outgoingStatus: StatusMessage.OutgoingStatus.Unknown
property double timestamp: 0 property double timestamp: 0
property var reactionsModel: [] property var reactionsModel: []