From fa3c604bb12a0bdf091973d7a7bf9ba23b6e134e Mon Sep 17 00:00:00 2001 From: Tom Elliott Date: Sun, 23 Aug 2026 21:19:50 -0500 Subject: [PATCH] fix(tasktypeedit): move the icon renderer off the bare `fa` prefix The icon column composes its class as `fa fa-` + the stored taskTypes.ttIcon value. `fa` is still the solid alias in Font Awesome 7 so this rendered, but it is the last call site in this repo left on the old prefix after the FA7 port, and it evades the icon-name check because the name is concatenated on -- the literal ends at the quote, so nothing matches it. No data change here. The values it renders are the taskTypes rows repaired by FOGProject/fogproject#1338, which corrects the seven FA4 outline names FA7 dropped. Co-Authored-By: Claude --- tasktypeedit/js/fog.tasktypeedit.list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasktypeedit/js/fog.tasktypeedit.list.js b/tasktypeedit/js/fog.tasktypeedit.list.js index 68fb214e..16ab1fb4 100644 --- a/tasktypeedit/js/fog.tasktypeedit.list.js +++ b/tasktypeedit/js/fog.tasktypeedit.list.js @@ -15,7 +15,7 @@ }, { render: function(data, type, row) { - return ''; },