mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	feat(client/tasks): display completed tasks
This commit is contained in:
		
							parent
							
								
									7c0b43db85
								
							
						
					
					
						commit
						2a3546edd5
					
				@ -59,7 +59,7 @@ const TPL = `
 | 
			
		||||
function buildTask(task: FTask) {
 | 
			
		||||
    return `\
 | 
			
		||||
<li class="task">
 | 
			
		||||
    <input type="checkbox" class="check" data-task-id="${task.taskId}" /> ${task.title}
 | 
			
		||||
    <input type="checkbox" class="check" data-task-id="${task.taskId}" ${task.isDone ? "checked" : ""} /> ${task.title}
 | 
			
		||||
</li>`;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user