You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(angular): Set unknown component name default in TraceDirective (#6222)
Fix a bug in the Angular SDK's `TraceDirective` where previously, the fallback `UNKNOWN_COMPONENT` name wasn't correctly applied to the span description if users didn't specify a manual value for the directive:
```html
<!-- this adds <standalone1> as a span description -->
<app-my-component trace="standalone1"></app-my-component>
<!-- this used to add <> as a span description -->
<!-- With this fix, we now get <unknown> as a span description -->
<app-my-component trace></app-my-component>
```
0 commit comments