${headingArg}
|
`
)}
${(() => {
if (this.dataActions && this.dataActions.length > 0) {
return html`
Actions
|
`;
}
})()}
---|---|
${transformedItem[headingArg]}
|
`
)}
${(() => {
if (this.dataActions && this.dataActions.length > 0) {
return html`
${(() => {
const actions: TemplateResult[] = [];
for (const action of this.dataActions) {
if (action.type !== 'inRow') continue;
actions.push(
html`
action.actionFunc(itemArg)}
>
${action.iconName
? html`
`
);
}
return actions;
})()}
|
`;
}
})()}