From 09dacfdfebc9224e19298369d667d87705af5be4 Mon Sep 17 00:00:00 2001 From: Drew Ansbacher Date: Thu, 16 Dec 2021 13:01:31 -0700 Subject: [PATCH] no color --- .../apps-routes/app-show/app-show.page.ts | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/ui/src/app/pages/apps-routes/app-show/app-show.page.ts b/ui/src/app/pages/apps-routes/app-show/app-show.page.ts index 53d0fbb63..daa6b6fdb 100644 --- a/ui/src/app/pages/apps-routes/app-show/app-show.page.ts +++ b/ui/src/app/pages/apps-routes/app-show/app-show.page.ts @@ -380,7 +380,6 @@ export class AppShowPage { title: 'Instructions', description: `Understand how to use ${pkgTitle}`, icon: 'list-outline', - color: 'danger', }, // config { @@ -388,7 +387,6 @@ export class AppShowPage { title: 'Config', description: `Customize ${pkgTitle}`, icon: 'construct-outline', - color: 'danger', }, // properties { @@ -396,7 +394,6 @@ export class AppShowPage { title: 'Properties', description: 'Runtime information, credentials, and other values of interest', icon: 'briefcase-outline', - color: 'danger', }, // actions { @@ -404,7 +401,6 @@ export class AppShowPage { title: 'Actions', description: `Uninstall and other commands specific to ${pkgTitle}`, icon: 'flash-outline', - color: 'danger', }, // interfaces { @@ -412,37 +408,24 @@ export class AppShowPage { title: 'Interfaces', description: 'User and machine access points', 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 }), title: 'Logs', description: 'Raw, unfiltered service logs', icon: 'receipt-outline', - color: 'danger', }, { action: () => this.navCtrl.navigateForward([`marketplace/${this.pkgId}`]), title: 'Marketplace', description: 'View service in marketplace', icon: 'storefront-outline', - color: 'danger', }, { action: () => this.donate(), title: 'Donate', description: `Support ${pkgTitle}`, icon: 'logo-bitcoin', - color: 'danger', }, ] } @@ -466,7 +449,6 @@ interface Button { title: string description: string icon: string - color: string action: Function }