mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
- Fix incorrect list name in task viewer opened from All tasks list (GH-107)
This commit is contained in:
parent
4356dd2c62
commit
4c2033aa8c
1 changed files with 1 additions and 1 deletions
|
|
@ -1839,7 +1839,7 @@ function fillTaskViewer(id)
|
|||
$('#page_taskviewer .prio .content').html(preparePrio(item.prio,item.id));
|
||||
$('#page_taskviewer .due .content').html(item.duedate);
|
||||
$('#page_taskviewer .tags .content').html(prepareTagsStr(item, ''));
|
||||
$('#page_taskviewer .list .content').text(curList.name);
|
||||
$('#page_taskviewer .list .content').text(curList.id == -1 ? item.listName : curList.name);
|
||||
if (item.note == '') {
|
||||
$('#page_taskviewer').addClass('no-note');
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue