Skip to content

Commit 9c25928

Browse files
fix(vue): Make vue span operation lowercase (#4084)
Lowercase span operations matches the conventions we set with other spans. Co-authored-by: Kamil Ogórek <[email protected]>
1 parent 6608d39 commit 9c25928

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/integrations/src/vue.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ export class Vue implements Integration {
268268
if (transaction) {
269269
this._rootSpan = transaction.startChild({
270270
description: 'Application Render',
271-
op: 'Vue',
271+
op: 'vue',
272272
});
273273
}
274274
// Use functionality from @sentry/tracing
@@ -277,7 +277,7 @@ export class Vue implements Integration {
277277
if (activeTransaction) {
278278
this._rootSpan = activeTransaction.startChild({
279279
description: 'Application Render',
280-
op: 'Vue',
280+
op: 'vue',
281281
});
282282
}
283283
}

packages/vue/src/tracing.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export const createTracingMixins = (options: TracingOptions): Mixins => {
7171
this.$_sentryRootSpan ||
7272
activeTransaction.startChild({
7373
description: 'Application Render',
74-
op: 'Vue',
74+
op: 'vue',
7575
});
7676
}
7777
}

0 commit comments

Comments
 (0)