summaryrefslogtreecommitdiff
path: root/TaskList.qml
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-25 17:06:03 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-25 17:06:03 +0800
commitfd0e5154a42da3cc9effc32f781a393d43ec5384 (patch)
tree580f15d420fc3f2467381046be3d5d803e4be767 /TaskList.qml
parent38b6e2e5661ce038c845e1f46847833c69dd0e27 (diff)
Try to get ticket history when task item is clicked
Diffstat (limited to 'TaskList.qml')
-rw-r--r--TaskList.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/TaskList.qml b/TaskList.qml
index 1d7837f..15753bd 100644
--- a/TaskList.qml
+++ b/TaskList.qml
@@ -9,7 +9,10 @@ TaskListForm {
width: parent.width
height: task.height
taskTitle.text: subject
- itemDelegate.onClicked: pageView.push("TaskDetails.qml")
+ itemDelegate.onClicked: {
+ window.ticketHistory(id)
+ pageView.push("TaskDetails.qml")
+ }
}
}
}