aboutsummaryrefslogtreecommitdiff
path: root/kamon-status/src/components/OverviewCard.vue
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-status/src/components/OverviewCard.vue')
-rw-r--r--kamon-status/src/components/OverviewCard.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/kamon-status/src/components/OverviewCard.vue b/kamon-status/src/components/OverviewCard.vue
index 8939d93d..6746d761 100644
--- a/kamon-status/src/components/OverviewCard.vue
+++ b/kamon-status/src/components/OverviewCard.vue
@@ -53,7 +53,7 @@ export default class OverviewCard extends Vue {
}
get instrumentationStatusMessage(): string {
- return this.instrumentation.map(i => (i.isActive ? 'Active' : 'Disabled') as string).getOrElse('Unknown')
+ return this.instrumentation.map(i => (i.active ? 'Active' : 'Disabled') as string).getOrElse('Unknown')
}
get metricsStatusMessage(): string {