${htmlEscape(item.original.name)}
${item.original.fullname && item.original.fullname !== '' ? `
${htmlEscape(item.original.fullname)}` : ''}
`;
},
},
];
// @ts-expect-error TS2351: This expression is not constructable (strange, why)
const tribute = new Tribute({collection: collections, noMatchTemplate: ''});
tribute.attach(element);
return tribute;
}