awf-test-lib 0.0.99 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -387,6 +387,12 @@ class ContactComponent {
|
|
387
387
|
this.selectPM(this.selectedSystem);
|
388
388
|
this.loadForm();
|
389
389
|
console.log('changed');
|
390
|
+
this.systems = this.systems.map((system) => {
|
391
|
+
return {
|
392
|
+
...system,
|
393
|
+
name: system.systemId + ' - ' + system.name,
|
394
|
+
};
|
395
|
+
});
|
390
396
|
}
|
391
397
|
// convenience getter for easy access to form fields
|
392
398
|
get f() {
|