This commit is contained in:
Drew Ansbacher
2021-12-16 13:01:31 -07:00
committed by Aiden McClelland
parent ab78c33d4a
commit 09dacfdfeb

View File

@@ -380,7 +380,6 @@ export class AppShowPage {
title: 'Instructions', title: 'Instructions',
description: `Understand how to use ${pkgTitle}`, description: `Understand how to use ${pkgTitle}`,
icon: 'list-outline', icon: 'list-outline',
color: 'danger',
}, },
// config // config
{ {
@@ -388,7 +387,6 @@ export class AppShowPage {
title: 'Config', title: 'Config',
description: `Customize ${pkgTitle}`, description: `Customize ${pkgTitle}`,
icon: 'construct-outline', icon: 'construct-outline',
color: 'danger',
}, },
// properties // properties
{ {
@@ -396,7 +394,6 @@ export class AppShowPage {
title: 'Properties', title: 'Properties',
description: 'Runtime information, credentials, and other values of interest', description: 'Runtime information, credentials, and other values of interest',
icon: 'briefcase-outline', icon: 'briefcase-outline',
color: 'danger',
}, },
// actions // actions
{ {
@@ -404,7 +401,6 @@ export class AppShowPage {
title: 'Actions', title: 'Actions',
description: `Uninstall and other commands specific to ${pkgTitle}`, description: `Uninstall and other commands specific to ${pkgTitle}`,
icon: 'flash-outline', icon: 'flash-outline',
color: 'danger',
}, },
// interfaces // interfaces
{ {
@@ -412,37 +408,24 @@ export class AppShowPage {
title: 'Interfaces', title: 'Interfaces',
description: 'User and machine access points', description: 'User and machine access points',
icon: 'desktop-outline', icon: 'desktop-outline',
color: 'danger',
}, },
// metrics
// {
// action: () => this.navCtrl.navigateForward(['metrics'], { relativeTo: this.route }),
// title: 'Monitor',
// description: 'View system usage',
// icon: 'pulse-outline',
// color: 'danger',
// },
// logs
{ {
action: () => this.navCtrl.navigateForward(['logs'], { relativeTo: this.route }), action: () => this.navCtrl.navigateForward(['logs'], { relativeTo: this.route }),
title: 'Logs', title: 'Logs',
description: 'Raw, unfiltered service logs', description: 'Raw, unfiltered service logs',
icon: 'receipt-outline', icon: 'receipt-outline',
color: 'danger',
}, },
{ {
action: () => this.navCtrl.navigateForward([`marketplace/${this.pkgId}`]), action: () => this.navCtrl.navigateForward([`marketplace/${this.pkgId}`]),
title: 'Marketplace', title: 'Marketplace',
description: 'View service in marketplace', description: 'View service in marketplace',
icon: 'storefront-outline', icon: 'storefront-outline',
color: 'danger',
}, },
{ {
action: () => this.donate(), action: () => this.donate(),
title: 'Donate', title: 'Donate',
description: `Support ${pkgTitle}`, description: `Support ${pkgTitle}`,
icon: 'logo-bitcoin', icon: 'logo-bitcoin',
color: 'danger',
}, },
] ]
} }
@@ -466,7 +449,6 @@ interface Button {
title: string title: string
description: string description: string
icon: string icon: string
color: string
action: Function action: Function
} }