#12097 Fix view discovery

This commit is contained in:
miguel angel rasteu 2023-09-21 14:21:54 +02:00
parent 7d5f4f17c6
commit 80b0522c7c
1 changed files with 3 additions and 5 deletions

View File

@ -50,12 +50,10 @@ function progress_task_list(id, title) {
$elem.html(err_text); $elem.html(err_text);
} }
if (data) { if (data) {
data = data.replace( let split_data = data.split('{"html":');
'<script type="text/javascript" src="http://172.16.0.2/pandora_console/include/javascript/jquery.ui-timepicker-addon.js"></script>', data = '{"html":' + split_data[1];
""
);
data = JSON.parse(data); data = JSON.parse(data);
$elem.html(data.html); $elem.html(data.html + " " + split_data[0]);
} }
if (!$elem.dialog("isOpen")) $elem.dialog("open"); if (!$elem.dialog("isOpen")) $elem.dialog("open");