diff options
| -rw-r--r-- | TaskDetails.qml | 26 | ||||
| m--------- | larva | 0 | 
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 |