From 99d48c312c11a48ec25c13862ed9f891feab0287 Mon Sep 17 00:00:00 2001 From: Brandon Jordan Date: Sun, 8 Dec 2024 00:22:36 -0500 Subject: [PATCH] Correct list --- src/actions/list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/list.ts b/src/actions/list.ts index 6883634..5d40454 100644 --- a/src/actions/list.ts +++ b/src/actions/list.ts @@ -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);