Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend/app/components/stack_trace_snippet/message.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {CommonModule} from '@angular/common';
import {Component, Input} from '@angular/core';
import {Component, Input, ChangeDetectionStrategy} from '@angular/core';

/**
* A component to display a message with a title and content.
*/
@Component({
standalone: true,
changeDetection: ChangeDetectionStrategy.Eager,standalone: true,
selector: 'message',
templateUrl: './message.ng.html',
styleUrls: ['./message.scss'],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, inject, Input, OnChanges, OnDestroy, SimpleChanges} from '@angular/core';
import {Component, inject, Input, OnChanges, OnDestroy, SimpleChanges, ChangeDetectionStrategy} from '@angular/core';
import {ActivatedRoute} from '@angular/router';
import {Metric} from 'org_xprof/frontend/app/common/interfaces/source_stats';
import * as utils from 'org_xprof/frontend/app/common/utils/utils';
Expand All @@ -11,7 +11,7 @@ import {takeUntil} from 'rxjs/operators';
* stack frame address.
*/
@Component({
standalone: false,
changeDetection: ChangeDetectionStrategy.Eager,standalone: false,
selector: 'stack-frame-snippet',
templateUrl: './stack_frame_snippet.ng.html',
styleUrls: ['./stack_frame_snippet.scss'],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import {Component, Input, OnChanges, SimpleChanges} from '@angular/core';
import {Component, Input, OnChanges, SimpleChanges, ChangeDetectionStrategy} from '@angular/core';
import {Address} from 'org_xprof/frontend/app/services/source_code_service/source_code_service_interface';

/**
* A component to display a snippet of source code corresponding to a given
* stack trace.
*/
@Component({
standalone: false,
changeDetection: ChangeDetectionStrategy.Eager,standalone: false,
selector: 'stack-trace-snippet',
templateUrl: './stack_trace_snippet.ng.html',
styleUrls: ['./stack_trace_snippet.scss'],
Expand Down