summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-02-05 21:24:22 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-02-05 21:24:22 +0800
commitca0e877a465283115866dbef2ca523f1d3c72158 (patch)
tree0f92980cca2d1df637d1661516351f78145ec7c3
parent5df5faf5cae1f2d5c889ef51237051fb5d35ece8 (diff)
TicketList not used any more
-rw-r--r--Home.qml4
-rw-r--r--TicketList.qml18
2 files changed, 0 insertions, 22 deletions
diff --git a/Home.qml b/Home.qml
index c337062..e6d4804 100644
--- a/Home.qml
+++ b/Home.qml
@@ -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
- })
- }
- }
- }
-}