diff --git a/examples-standalone/coffee-warehouse/src/app/components/numeric-textbox-buttons/numeric-textbox-buttons.component.html b/examples-standalone/coffee-warehouse/src/app/components/numeric-textbox-buttons/numeric-textbox-buttons.component.html index b79ef9b2..679f5f14 100644 --- a/examples-standalone/coffee-warehouse/src/app/components/numeric-textbox-buttons/numeric-textbox-buttons.component.html +++ b/examples-standalone/coffee-warehouse/src/app/components/numeric-textbox-buttons/numeric-textbox-buttons.component.html @@ -12,6 +12,7 @@ - + @@ -61,12 +64,17 @@ - + - + diff --git a/examples-standalone/coffee-warehouse/src/app/components/settings-list/settings-list.component.ts b/examples-standalone/coffee-warehouse/src/app/components/settings-list/settings-list.component.ts index 6afd0d47..55d292ac 100644 --- a/examples-standalone/coffee-warehouse/src/app/components/settings-list/settings-list.component.ts +++ b/examples-standalone/coffee-warehouse/src/app/components/settings-list/settings-list.component.ts @@ -107,20 +107,7 @@ export class SettingsListComponent { } public onValueChange(value: string) { - console.log(`combo value changed, new value: `, value); - // get settings after API call - // call settingChange with the respective settings for the combobox value - - // sample usage - this.subs.add(this.httpService.get('https://jsonplaceholder.typicode.com/todos/1') - .subscribe(r => console.log('from API', r))); - - this.subs.add(this.httpService.post('https://jsonplaceholder.typicode.com/posts', { - title: value, - body: 'body', - userId: 1, - }).subscribe(r => console.log('from API', r))); - + console.log(`value change`); this.comboboxValue = value; }