summaryrefslogtreecommitdiff
path: root/TaskList.qml
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-24 23:42:55 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-24 23:42:55 +0700
commitda303a3c4d82b758b0e9aba0bf49b8efc3e4843e (patch)
tree4c74c5e57ea171dac87ce88a06911e52b690a382 /TaskList.qml
parent35fe3c15f3b8a562d866f40389a5a8124501636a (diff)
fixed `TaskList` and `TaskDetail` `onClicked`
Diffstat (limited to 'TaskList.qml')
-rw-r--r--TaskList.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/TaskList.qml b/TaskList.qml
index ab92327..b79720d 100644
--- a/TaskList.qml
+++ b/TaskList.qml
@@ -9,7 +9,7 @@ TaskListForm {
width: parent.width
height: task.height
taskTitle.text: subject
- itemDelegate.onClicked: contentView.push("TaskDetails.qml")
+ itemDelegate.onClicked: pageView.push("TaskDetails.qml")
}
}
}