Task lists WIP:

* task drag and drop (buggy version)
This commit is contained in:
John Livingston
2024-05-07 13:12:57 +02:00
parent 529f0aa703
commit 0d0771e684
4 changed files with 151 additions and 1 deletions

View File

@ -67,7 +67,7 @@ export default function tplMucTaskList (el, tasklist) {
${el.collapsed
? ''
: repeat(tasks, (task) => task.get('id'), (task) => {
return html`<livechat-converse-muc-task .model=${task}></livechat-converse-muc-task>`
return html`<livechat-converse-muc-task .model=${task} draggable="true"></livechat-converse-muc-task>`
})
}
</div>