From c9a6a7c84beadc3940237130f07cdda1ffacb9b2 Mon Sep 17 00:00:00 2001 From: Outsider Date: Thu, 6 Oct 2022 18:07:44 +0900 Subject: [PATCH] fix(vue): align span operations to new operations (#5892) Signed-off-by: Outsider Co-authored-by: Abhijeet Prasad Co-authored-by: Lukas Stracke --- packages/vue/src/tracing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vue/src/tracing.ts b/packages/vue/src/tracing.ts index 342b58db2ebd..2f60f0845a9f 100644 --- a/packages/vue/src/tracing.ts +++ b/packages/vue/src/tracing.ts @@ -75,7 +75,7 @@ export const createTracingMixins = (options: TracingOptions): Mixins => { this.$_sentryRootSpan || activeTransaction.startChild({ description: 'Application Render', - op: VUE_OP, + op: `${VUE_OP}.render`, }); } }