1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-10-26 08:55:23 +03:00

Merge remote-tracking branch 'origin/v3.5'

This commit is contained in:
Adolfo Gómez García 2022-03-13 15:57:46 +01:00
commit 3e6287acf4
2 changed files with 5 additions and 0 deletions

View File

@ -132,6 +132,10 @@ export class Plugin {
} else {
// Is HTTP access the service returned, or for UDS client?
if (data.url.startsWith('/')) {
// If running message window, close it first...
if ( alert.componentInstance ) {
alert.componentInstance.close();
}
state = 'stop';
this.launchURL(data.url);
return;

View File

@ -18,6 +18,7 @@ export interface JSONTransport {
export interface JSONService {
id: string;
is_meta: boolean;
comments: string;
description: string;
group: JSONGroup;