diff options
-rw-r--r-- | Home.qml | 4 | ||||
-rw-r--r-- | TicketList.qml | 18 |
2 files changed, 0 insertions, 22 deletions
@@ -30,10 +30,6 @@ HomeForm { Page {} } - contentView.initialItem: TicketList { - title: qsTr("Projects") - } - footer: MainTabBarForm { width: parent.width leftTabButton.onClicked: layout.currentIndex = 0 diff --git a/TicketList.qml b/TicketList.qml deleted file mode 100644 index 43cf4db..0000000 --- a/TicketList.qml +++ /dev/null @@ -1,18 +0,0 @@ -import QtQuick 2.12 -import "larva/components" -import "larva/features" - -TaskListForm { - listView { - model: ticketList - delegate: ListItemSingleTextForm { - title.text: subject - delegate.onClicked: { - window.ticketHistory(id, true) - pageView.push("TicketHistory.qml", { - "subject": subject - }) - } - } - } -} |