Skip to content

Commit 81db424

Browse files
style: npm run lint:fix
1 parent 38b533f commit 81db424

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

apps/portal/src/app/app.component.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ import { filter, takeUntil } from 'rxjs/operators';
1717
import { environment } from '../environments/environment';
1818

1919
@Component({
20-
selector: 'app-root',
21-
templateUrl: './app.component.html',
22-
styleUrls: ['./app.component.scss'],
23-
standalone: false
20+
selector: 'app-root',
21+
templateUrl: './app.component.html',
22+
styleUrls: ['./app.component.scss'],
23+
standalone: false,
2424
})
2525
export class AppComponent implements OnInit, OnDestroy {
2626
title = 'msal-angular-tutorial';

apps/portal/src/app/app.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ import {
1818
MsalGuard,
1919
} from '@azure/msal-angular';
2020
import { PublicClientApplication, InteractionType } from '@azure/msal-browser';
21+
import { PrimeNG } from 'primeng/config';
22+
import LaraLightBlue from '@primeng/themes/lara';
2123
import AppRoutingModule from './app-routing.module';
2224
import { PrimeNgModule } from './primeng.module';
2325
import { AppComponent } from './app.component';
@@ -27,8 +29,6 @@ import { TranscriptAnalyzerComponent } from './features/transcript-analyzer/tran
2729
import { FileProcessorComponent } from './features/file-processor/file-processor.component';
2830
import { environment } from '../environments/environment';
2931
import HttpLoaderFactory from '../assets/i18n/loader';
30-
import { PrimeNG } from 'primeng/config';
31-
import LaraLightBlue from '@primeng/themes/lara';
3232

3333
const isIE =
3434
window.navigator.userAgent.indexOf('MSIE ') > -1 ||

apps/portal/src/app/features/file-processor/file-processor.component.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import { ResponseData } from '../../../common/interface';
1212

1313
const POLLING_DELAY_IN_MILLISECONDS = 5000;
1414
@Component({
15-
selector: 'app-file-processor',
16-
templateUrl: './file-processor.component.html',
17-
styleUrls: ['./file-processor.component.scss'],
18-
standalone: false
15+
selector: 'app-file-processor',
16+
templateUrl: './file-processor.component.html',
17+
styleUrls: ['./file-processor.component.scss'],
18+
standalone: false,
1919
})
2020
export class FileProcessorComponent implements OnInit, OnDestroy {
2121
jobDetails: JobDetails[] = [];

apps/portal/src/app/features/transcript-analyzer/transcript-analyzer.component.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import { FileService } from '../file.service';
66
import { ResponseData } from '../../../common/interface';
77

88
@Component({
9-
selector: 'app-transcript-analyzer',
10-
templateUrl: './transcript-analyzer.component.html',
11-
styleUrl: './transcript-analyzer.component.scss',
12-
encapsulation: ViewEncapsulation.None,
13-
standalone: false
9+
selector: 'app-transcript-analyzer',
10+
templateUrl: './transcript-analyzer.component.html',
11+
styleUrl: './transcript-analyzer.component.scss',
12+
encapsulation: ViewEncapsulation.None,
13+
standalone: false,
1414
})
1515
export class TranscriptAnalyzerComponent {
1616
constructor(

0 commit comments

Comments
 (0)