7152-devToTest_2414 #2228

Merged
alexm merged 636 commits from 7152-devToTest_2414 into test 2024-03-28 08:26:34 +00:00
1 changed files with 2 additions and 4 deletions
Showing only changes of commit 924fe12a93 - Show all commits

View File

@ -8,6 +8,7 @@ module.exports = Self => {
}, },
returns: { returns: {
type: ['object'], type: ['object'],
root: true
}, },
}); });
@ -30,11 +31,8 @@ module.exports = Self => {
if (operator) { if (operator) {
const printer = operator.printer(); const printer = operator.printer();
console.log({
id: printer.id,
name: printer.name
});
return Array.isArray(printer) ? printer : [printer]; return Array.isArray(printer) ? printer : [printer];
} }
return [];
}; };
}; };