diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-02-05 21:24:22 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-02-05 21:24:22 +0800 |
commit | ca0e877a465283115866dbef2ca523f1d3c72158 (patch) | |
tree | 0f92980cca2d1df637d1661516351f78145ec7c3 | |
parent | 5df5faf5cae1f2d5c889ef51237051fb5d35ece8 (diff) |
TicketList not used any more
-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 - }) - } - } - } -} |