Skip to content

Commit 8095d55

Browse files
committed
Update config tutorial & ID in manifest
1 parent 99bb71b commit 8095d55

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

cloudapp/src/app/configuration/configuration.component.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ export class ConfigurationComponent implements OnInit {
3232
}
3333

3434
load() {
35-
this.configService.getAsFormGroup().subscribe( settings => {
36-
if (Object.keys(settings.value).length!=0) {
37-
this.form = settings;
35+
this.configService.getAsFormGroup().subscribe( config => {
36+
if (Object.keys(config.value).length!=0) {
37+
this.form = config;
3838
}
3939
});
4040
}
4141

4242
save() {
4343
this.saving = true;
4444
this.configService.set(this.form.value).subscribe(
45-
response => {
46-
this.toastr.success('Settings successfully saved.');
45+
() => {
46+
this.toastr.success('Configuration successfully saved.');
4747
this.form.markAsPristine();
4848
},
4949
err => this.toastr.error(err.message),

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "ExLibrisGroup/cloudapp-tutorials",
2+
"id": "exlibrisgroup/cloudapp-tutorials",
33
"title": "Cloud App Tutorials",
44
"description": "For more information on these tutorials, see https://developers.exlibrisgroup.com/cloudapps/tutorials/.",
55
"subtitle": "Accompanying code for the Cloud App tutorials in the Developer Network",

0 commit comments

Comments
 (0)