Value:
- {{numberValue}}
+ {{numericValue}}
Type:
- {{typeOf(numberValue)}}
+ {{typeOf(numericValue)}}
diff --git a/packages/demos/angular/src/app/basic-inputs-page/basic-inputs-page.component.ts b/packages/demos/angular/src/app/basic-inputs-page/basic-inputs-page.component.ts
index fccec8ba2c..6689000a10 100644
--- a/packages/demos/angular/src/app/basic-inputs-page/basic-inputs-page.component.ts
+++ b/packages/demos/angular/src/app/basic-inputs-page/basic-inputs-page.component.ts
@@ -10,7 +10,7 @@ export class BasicInputsPageComponent implements OnInit {
datetimeValue = '2017-11-18T14:17:45-06:00';
textareaValue = 'This is the Textarea Input';
textValue = 'This is the Text Input';
- numberValue = 1138;
+ numericValue = 1138;
checkboxValue = true;
toggleValue = false;