Skip to content

Commit

Permalink
Correct list
Browse files Browse the repository at this point in the history
  • Loading branch information
electrikmilk committed Dec 8, 2024
1 parent c34311e commit 99d48c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default {
const footer = document.createElement('div');
footer.className = 'sp-action-list-footer';
const itemsSize = params["WFItems"].length;
footer.innerText = itemsSize + ' item' + (itemsSize ? 's' : null);
footer.innerText = itemsSize + ' item' + (itemsSize ? 's' : '');

list.appendChild(ul);
list.appendChild(footer);
Expand Down

0 comments on commit 99d48c3

Please sign in to comment.