Skip to content

Commit

Permalink
bring back button to account page to get to the dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasMizera committed Oct 5, 2023
1 parent aa4dd1f commit ae5891c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/qml/ProjectPanel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,8 @@ Item {

onBack: stackView.popOnePageOrClose()

onManagePlansClicked: manageSubscriptionPlans()

onSignOutClicked: {
__merginApi.signOut()
stackView.pop( null )
Expand Down
11 changes: 11 additions & 0 deletions app/qml/WorkspaceAccountPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Page {

signal back
signal signOutClicked
signal managePlansClicked
signal accountDeleted
signal switchWorkspace

Expand Down Expand Up @@ -204,6 +205,16 @@ Page {
text: qsTr("Your subscription was cancelled on %1").arg(root.subscriptionsTimestamp)
}

MMComponents.DelegateButton {
Layout.fillWidth: true
btnWidth: width

height: InputStyle.rowHeightMedium

text: qsTr("Manage account")
onClicked: root.managePlansClicked()
}

Text {
Layout.fillWidth: true
Layout.preferredHeight: InputStyle.rowHeightHeader
Expand Down

1 comment on commit ae5891c

@inputapp-bot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

iOS - version 23.10.463711 just submitted!

Please sign in to comment.