Remove delete button on manage page
parent
5c78753828
commit
6ef9096cb7
|
@ -297,12 +297,6 @@ async function listItems(category) {
|
|||
editSpan.appendChild(editButton);
|
||||
manageCell.appendChild(editSpan);
|
||||
|
||||
const removeSpan = document.createElement('remove');
|
||||
const removeButton = document.createElement('button');
|
||||
removeButton.textContent = "D";
|
||||
removeSpan.appendChild(removeButton);
|
||||
manageCell.appendChild(removeSpan);
|
||||
|
||||
row.appendChild(manageCell);
|
||||
|
||||
itemsListTable.appendChild(row);
|
||||
|
|
Reference in New Issue