diff options
Diffstat (limited to 'features/TaskBriefForm.ui.qml')
-rw-r--r-- | features/TaskBriefForm.ui.qml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/features/TaskBriefForm.ui.qml b/features/TaskBriefForm.ui.qml index fe313c7..6653379 100644 --- a/features/TaskBriefForm.ui.qml +++ b/features/TaskBriefForm.ui.qml @@ -4,7 +4,7 @@ import QtQuick.Controls.Material 2.12 import QtQuick.Layouts 1.12 import QtGraphicalEffects 1.0 -Page { +Item { id: taskBriefComponents height: ticketSubjectLayout.height + ticketMetaLayout.height property alias ticketSubject: ticketSubject @@ -13,10 +13,6 @@ Page { property alias ticketCreatedText: ticketCreatedText property alias ticketCreatedTimestamp: ticketCreatedTimestamp - background: Rectangle { - color: "#FFFFFF" - } - RowLayout { id: ticketSubjectLayout height: ticketSubject.height + 32 @@ -49,7 +45,6 @@ Page { Layout.leftMargin: 16 Layout.topMargin: 8 spacing: 8 - Layout.fillWidth: true Image { id: userAvatar @@ -94,7 +89,7 @@ Page { id: ticketCreatedTimestamp text: qsTr("2017-07-25 14:05:30") Layout.bottomMargin: 16 - Layout.fillHeight: true + Layout.fillHeight: false Layout.leftMargin: 16 font.pixelSize: 12 font.family: "Work Sans" |