Add a space after the folder icon

b97c1a5cb8409806587f8312e0b84d1eaaa7f334

Tucker McKnight <tmcknight@instructure.com> | Wed Feb 04 2026

Add a space after the folder icon
js_templates/file.ts:49
Before
49
                dir.isDirectory ? m('span', m.trust('&#x1F4C1;')) : null,
After
49
                dir.isDirectory ? m('span', m.trust('&#x1F4C1;&nbsp;')) : null,
js_templates/files.ts:25
Before
25
        file.isDirectory ? m.trust('<span>&#x1F4C1;</span>') : null,
After
25
        file.isDirectory ? m.trust('<span>&#x1F4C1;&nbsp;</span>') : null,