import { html } from 'lit' import { __ } from 'i18n' export function tplMUCTaskApp (el, mucModel) { if (!mucModel) { return html`` } // should not happen if (!mucModel.tasklists) { return html`` } // too soon, not initialized. if (!el.show) { el.style.display = 'none' return html`` } el.style.display = '' // eslint-disable-next-line no-undef const i18nTasks = __(LOC_tasks) return html`