Skip to content

Commit a41071e

Browse files
authored
fix a little copy&paste error
In deviceInformation there was device.model two times instead of device.deviceType
1 parent 40d4033 commit a41071e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/ng-framework-modules-category/platform/platform-module-example/platform-module-example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class PlatformModuleExampleComponent {
4141
constructor() {
4242
this.deviceInformation = new DeviceInfo(
4343
device.model,
44-
device.model,
44+
device.deviceType,
4545
device.os,
4646
device.osVersion,
4747
device.sdkVersion,

0 commit comments

Comments
 (0)