Skip to content

Commit 99d48c3

Browse files
committed
Correct list
1 parent c34311e commit 99d48c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actions/list.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default {
3434
const footer = document.createElement('div');
3535
footer.className = 'sp-action-list-footer';
3636
const itemsSize = params["WFItems"].length;
37-
footer.innerText = itemsSize + ' item' + (itemsSize ? 's' : null);
37+
footer.innerText = itemsSize + ' item' + (itemsSize ? 's' : '');
3838

3939
list.appendChild(ul);
4040
list.appendChild(footer);

0 commit comments

Comments
 (0)