Skip to content

Commit 1503236

Browse files
committed
cleanup
1 parent 029299e commit 1503236

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

apps/nativescript-demo-ng/src/app/item/items.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import { ModalDialogService, NativeDialogService, NativeScriptCommonModule } fro
1212
templateUrl: './items.component.html',
1313
imports: [NativeScriptCommonModule],
1414
standalone: true,
15-
schemas: [NO_ERRORS_SCHEMA]
15+
schemas: [NO_ERRORS_SCHEMA],
1616
})
1717
export class ItemsComponent implements OnInit, OnDestroy {
18-
message = 'Hello Angular 20.0.0-rc.1!';
18+
message = 'Hello Angular 20.0.0!';
1919
items: Array<Item>;
2020

2121
constructor(

apps/nativescript-demo-ng/src/app/item3/items.component.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,23 @@ import { HttpClient } from '@angular/common/http';
44
import { Item } from '../item/item';
55
import { ItemService } from '../item/item.service';
66
import { ModalComponent } from '../modal/modal.component';
7-
import { ModalDialogService, NativeDialogService, NativeScriptCommonModule, NativeScriptRouterModule } from '@nativescript/angular';
7+
import {
8+
ModalDialogService,
9+
NativeDialogService,
10+
NativeScriptCommonModule,
11+
NativeScriptRouterModule,
12+
} from '@nativescript/angular';
813

914
@Component({
1015
selector: 'ns-items',
1116
moduleId: module.id,
1217
templateUrl: './items.component.html',
1318
imports: [NativeScriptCommonModule, NativeScriptRouterModule],
1419
standalone: true,
15-
schemas: [NO_ERRORS_SCHEMA]
20+
schemas: [NO_ERRORS_SCHEMA],
1621
})
1722
export class ItemsComponent implements OnInit, OnDestroy {
18-
message = 'Hello Angular 20.0.0-rc.1';
23+
message = 'Hello Angular 20.0.0';
1924
items: Array<Item>;
2025
borderRadius: number;
2126
fontSize: number;

0 commit comments

Comments
 (0)