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 committed by dlipicar
parent 96883c39e4
commit 33e4d39e9a
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
}
}