We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c34311e commit 99d48c3Copy full SHA for 99d48c3
src/actions/list.ts
@@ -34,7 +34,7 @@ export default {
34
const footer = document.createElement('div');
35
footer.className = 'sp-action-list-footer';
36
const itemsSize = params["WFItems"].length;
37
- footer.innerText = itemsSize + ' item' + (itemsSize ? 's' : null);
+ footer.innerText = itemsSize + ' item' + (itemsSize ? 's' : '');
38
39
list.appendChild(ul);
40
list.appendChild(footer);
0 commit comments