Update links to the add-ons store (#2380)

Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
pull/2383/head
jimtng 2024-02-21 03:49:07 +10:00 committed by GitHub
parent b30b7e2e18
commit ff034d5ed2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View File

@ -4,8 +4,8 @@
"title": "1. Install a Binding (Add-on)",
"steps": [
{
"link": "/settings/addons",
"title": "Addon-Store",
"link": "/addons/",
"title": "Add-on Store",
"text": "Left panel > Settings > Add-on Store or click here <i class=\"f7-icons size-22 add-button-icon\">arrow_right</i>"
},
{

View File

@ -679,7 +679,7 @@ export default {
this.$f7.on('pageBeforeIn', (page) => {
if (page.route && page.route.url) {
this.showSettingsSubmenu = page.route.url.indexOf('/settings/') === 0 || page.route.url.indexOf('/settings/addons/') === 0
this.showSettingsSubmenu = page.route.url.indexOf('/settings/') === 0
this.showDeveloperSubmenu = page.route.url.indexOf('/developer/') === 0
this.currentUrl = page.route.url
this.$store.commit('setPagePath', this.currentUrl)

View File

@ -47,11 +47,11 @@
<f7-block class="block-narrow" v-if="$store.getters.apiEndpoint('addons')">
<f7-col v-if="bindings.length">
<f7-list>
<f7-list-button color="blue" title="Install More Bindings" href="/settings/addons" />
<f7-list-button color="blue" title="Install More Bindings" href="/addons/" />
</f7-list>
</f7-col>
<f7-row v-else-if="ready" class="display-flex justify-content-center">
<f7-button large fill color="blue" href="/settings/addons">
<f7-button large fill color="blue" href="/addons/">
Install Bindings
</f7-button>
</f7-row>