QQQ-21 update to hide hidden process

This commit is contained in:
2022-07-13 10:50:25 -05:00
parent 62aee19d07
commit f29669411f

View File

@ -35,7 +35,7 @@ class QProcessUtils
processKeys.forEach((key) =>
{
const process = metaData.processes.get(key);
if (process.tableName === tableName)
if (!process.isHidden && process.tableName === tableName)
{
matchingProcesses.push(process);
}