1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-12-22 17:33:48 +03:00

Fixed initialization & use of servicesInformation on services.component.html

This commit is contained in:
Adolfo Gómez García 2021-07-29 13:09:37 +02:00
parent 14554b1722
commit 109de10ef5

View File

@ -22,7 +22,14 @@ class GroupedServices {
styleUrls: ['./services.component.css'],
})
export class ServicesComponent implements OnInit {
servicesInformation: JSONServicesInformation;
servicesInformation: JSONServicesInformation = {
autorun: false,
ip: '',
nets: '',
services: [],
transports: ''
};
group: GroupedServices[];
constructor(public api: UDSApiService) {}