Task lists WIP:

* Fix drag & drop
This commit is contained in:
John Livingston
2024-05-09 13:54:42 +02:00
parent 0d0771e684
commit 7e56c845fe
3 changed files with 6 additions and 4 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} draggable="true"></livechat-converse-muc-task>`
return html`<livechat-converse-muc-task .model=${task}></livechat-converse-muc-task>`
})
}
</div>