Fix winscope test

Meant to be amended to ag/23466728 but was auto-merged before I could

Test: npm run test:all
Bug: 23466728
Change-Id: I2cfb1ba7214ec0b316b489ef84a138861d878321
This commit is contained in:
Pablo Gamito
2023-05-30 15:07:08 +00:00
parent 115ed2f243
commit daa40dbd3f
2 changed files with 3 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ import {DragDropModule} from '@angular/cdk/drag-drop';
import {ScrollingModule} from '@angular/cdk/scrolling';
import {CommonModule} from '@angular/common';
import {HttpClientModule} from '@angular/common/http';
import {NgModule} from '@angular/core';
import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {MatButtonModule} from '@angular/material/button';
import {MatCardModule} from '@angular/material/card';
@@ -145,6 +145,7 @@ import {WebAdbComponent} from './components/web_adb_component';
DragDropModule,
ReactiveFormsModule,
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
bootstrap: [AppComponent],
})
export class AppModule {}

View File

@@ -138,7 +138,7 @@ export class TraceViewComponent {
title: view.title,
addedToDom: false,
dependencies: view.dependencies,
traceType: view.traceType
traceType: view.traceType,
};
});