(hasItems)
| 1887 | } |
| 1888 | |
| 1889 | export function updateRecycleBinState(hasItems) { |
| 1890 | window.recycleBinHasItems = !!hasItems; |
| 1891 | const icon = document.querySelector(`#${RECYCLE_BIN_ID} .recycle-bin-icon`); |
| 1892 | if (icon) { |
| 1893 | icon.innerHTML = recycleBinSVG(!!hasItems); |
| 1894 | } |
| 1895 | } |
| 1896 | |
| 1897 | function placeRecycleBinNode() { |
| 1898 | const ul = document.getElementById('rootChildren'); |
no test coverage detected