Fix kanban merge into document stopped working with introduction of PDF checkbox

This commit is contained in:
nathan 2021-10-18 09:42:12 -06:00
parent fe9c7dd372
commit cbe32069c2

View File

@ -744,20 +744,24 @@ export abstract class EgwApp
// Find what we need
let nm = null;
let action = _action;
let as_pdf = false;
let as_pdf = null;
// Find Select all
while(nm == null && action != null)
while(nm == null && action.parent != null)
{
if(action.data != null && action.data.nextmatch)
{
nm = action.data.nextmatch;
}
if(as_pdf === null && action.getActionById('as_pdf') !== null)
{
as_pdf = action.getActionById('as_pdf').checked;
}
action = action.parent;
}
let all = nm?.getSelection().all || false;
as_pdf = action.getActionById('as_pdf')?.checked || false;
as_pdf = as_pdf || false;
// Get list of entry IDs
let ids = [];