mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Try to avoid error from missing nodes
I suspect this is from either TypeScript conversion or nm node optimization, but can't duplicate it regularly
This commit is contained in:
parent
32267f02c8
commit
8f8c437712
@ -154,7 +154,13 @@ var et2_nextmatch_rowProvider = /** @class */ (function () {
|
||||
for (var j = 0; j < nodes.length; j++) {
|
||||
// Use the previously compiled node function to get the node
|
||||
// from the entry
|
||||
nodes[j] = entry.nodeFuncs[j](row);
|
||||
try {
|
||||
nodes[j] = entry.nodeFuncs[j](row);
|
||||
}
|
||||
catch (e) {
|
||||
debugger;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
// Set the array managers first
|
||||
entry.widget._mgrs = mgrs;
|
||||
|
@ -172,7 +172,15 @@ export class et2_nextmatch_rowProvider
|
||||
{
|
||||
// Use the previously compiled node function to get the node
|
||||
// from the entry
|
||||
nodes[j] = entry.nodeFuncs[j](row);
|
||||
try
|
||||
{
|
||||
nodes[j] = entry.nodeFuncs[j](row);
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
debugger;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
// Set the array managers first
|
||||
|
Loading…
Reference in New Issue
Block a user