mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-29 10:09:10 +01:00
Fix template load failed if it didn't had a template to load, now just resolving quietly.
Fixes calendar sidebox integration stalled eTemplate load
This commit is contained in:
parent
879f882ef1
commit
d8517edafa
@ -190,13 +190,13 @@ export class et2_template extends et2_DOMWidget
|
||||
else
|
||||
{
|
||||
this.egw().debug("warn", "Unable to find XML for ", template_name);
|
||||
reject()
|
||||
reject("Unable to find XML for " + template_name);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// No actual template
|
||||
reject();
|
||||
// No actual template - not an error, just nothing to do
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user