Task lists WIP:

* remember if task app was open, and restore when in fullpage mode
* refactoring
This commit is contained in:
John Livingston
2024-05-12 16:02:13 +02:00
parent 5c9733147b
commit 9ef71c07dd
6 changed files with 11 additions and 6 deletions

View File

@ -5,7 +5,7 @@ import { html } from 'lit'
export default (o) => {
return html`
${
o?.model && api.settings.get('livechat_task_list_enabled')
o?.model && api.settings.get('livechat_task_app_enabled')
? html`<livechat-converse-muc-task-app .model=${o.model}></livechat-converse-muc-task-app>`
: ''
}