diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-30 22:32:18 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-30 22:32:18 +0800 |
commit | 47b72e1b1dd45b496f096262c919e8a730ab5a00 (patch) | |
tree | 2080f28c06e9417b44536421302533c92cef5d73 /TicketList.qml | |
parent | d7d7deff4f8dd5e2d0ad5982ed1c076abd9e3143 (diff) |
Ticket history is ready with subject, description, content, and creator
Diffstat (limited to 'TicketList.qml')
-rw-r--r-- | TicketList.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/TicketList.qml b/TicketList.qml index d253aa8..cb095d9 100644 --- a/TicketList.qml +++ b/TicketList.qml @@ -8,7 +8,10 @@ TaskListForm { width: parent.width height: task.height taskTitle.text: subject - itemDelegate.onClicked: window.ticketHistory(id) + itemDelegate.onClicked: { + window.ticketId(id) + window.ticketSubject(subject) + } } } } |