summaryrefslogtreecommitdiff
path: root/TicketHistory.qml
diff options
context:
space:
mode:
Diffstat (limited to 'TicketHistory.qml')
-rw-r--r--TicketHistory.qml4
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
}
}
}