summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-29 23:39:53 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-29 23:40:07 +0800
commit75de73c016abbf9847a65702eeb676d607973598 (patch)
treedf861ec3ad3d2721238beef6d0683b2ef252fa69
parent98ee490d28cf5948f7bc054af6a50910dd84e72c (diff)
Move the brief and history forms and its container
so that the TaskDetails can have access to their properties
-rw-r--r--TaskDetails.qml26
m---------larva0
2 files changed, 26 insertions, 0 deletions
diff --git a/TaskDetails.qml b/TaskDetails.qml
index 94162f6..577f908 100644
--- a/TaskDetails.qml
+++ b/TaskDetails.qml
@@ -6,6 +6,32 @@ import "larva/features"
TaskDetailForm {
backButton.onClicked: pageView.pop()
+
+ StackView {
+ id: contentView
+ anchors.fill: parent
+
+ TaskBriefForm {
+ id: taskBriefForm
+ anchors.top: parent.top
+ anchors.topMargin: 0
+ anchors.right: parent.right
+ anchors.rightMargin: 0
+ anchors.left: parent.left
+ anchors.leftMargin: 0
+ ticketSubject.text: subject
+ }
+
+ TaskHistoryForm {
+ id: taskHistoryForm
+ anchors.right: parent.right
+ anchors.rightMargin: 0
+ anchors.left: parent.left
+ anchors.leftMargin: 0
+ anchors.top: taskBriefForm.bottom
+ anchors.topMargin: 0
+ }
+ }
}
/*##^##
diff --git a/larva b/larva
-Subproject f265b7fdb808e16c58cca1e3027387be4279a63
+Subproject 04df88e0e5db34066a626a02dbe9960b55267e6