Skip to content

Commit

Permalink
update images source
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyHacks committed Jul 25, 2023
1 parent 94b9818 commit 6750b6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/displayList.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ export default (task) => {
task.innerHTML = `
<input type="checkbox" checked class="checkB" ${taskarr[i].completed} autocomplete="false" />
<input class="newTasks" type="text" id="addItem" value="${taskarr[i].description}" />
<img class="trash" id="trash" src='./assets/trash-can.png' alt="" />
<img class="trash" id="trash" src="./assets/trash-can.png" alt="" />
`;
}
if (taskarr[i].description !== '' && taskarr[i].completed === false) {
task.innerHTML = `
<input type="checkbox" class="checkB" ${taskarr[i].completed} />
<input class="newTasks" type="text" id="addItem" value="${taskarr[i].description}" />
<img class="trash" id="trash" src='/assets/three-dots.png' alt="" />
<img class="trash" id="trash" src="./assets/three-dots.png" alt="" />
`;
}

Expand Down

0 comments on commit 6750b6c

Please sign in to comment.