feat(activity): temporarily hide activity tab from collectibles details view

This commit is contained in:
Dario Gabriel Lipicar 2024-11-15 02:28:30 -03:00
parent 77d59cd892
commit f9bb09596e
No known key found for this signature in database
GPG Key ID: 9625E9494309D203
1 changed files with 1 additions and 7 deletions

View File

@ -230,11 +230,6 @@ Item {
enabled: visible
}
StatusTabButton {
text: qsTr("Activity")
width: visible ? implicitWidth: 0
}
StatusTabButton {
text: qsTr("Links")
width: visible ? implicitWidth: 0
@ -259,8 +254,7 @@ Item {
switch (collectiblesDetailsTab.currentIndex) {
case 0: return traitsView
case 1: return traitsView
case 2: return activityView
case 3: return linksView
case 2: return linksView
}
}