diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-10-01 17:30:07 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-10-01 17:30:07 +0800 |
commit | 2255d58a5459a481743868070496ea76fe8b758b (patch) | |
tree | 81f824e560aa98a52ed6a4956a01ba4e162a5e65 /TicketHistory.qml | |
parent | d79cec3e7cdaf00f53c0d7c0c3c6b2f039a05a5d (diff) |
Ticket history created time real data
Diffstat (limited to 'TicketHistory.qml')
-rw-r--r-- | TicketHistory.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TicketHistory.qml b/TicketHistory.qml index 7fe07a5..8970da1 100644 --- a/TicketHistory.qml +++ b/TicketHistory.qml @@ -5,9 +5,9 @@ import "larva/features" TaskDetailForm { property string subject - property string description property string content property string creator + property string created backButton.onClicked: pageView.pop() @@ -28,7 +28,6 @@ TaskDetailForm { anchors.leftMargin: 0 ticketSubject.text: subject ticketCreator.text: creator - ticketCreatedText.text: description } Label { @@ -53,6 +52,7 @@ TaskDetailForm { anchors.topMargin: 8 creatorText.text: creator ticketDescription.text: content + ticketDate.text: created } } } |