nicer focus-typing

Massimo Melina committed Jun 10, 2025 at 09:49 UTC 3bcab31c3622e7be3b24a90eef90fc6afe161a87
1 file changed +1 -1
frontend/src/BrowseFiles.ts
+1 -1
@@ -205,7 +205,7 @@ function FilesList() {
205 const focusHint = `${t('focus_hint', "By typing on your keyboard, you search and focus elements of the list.")}\n\nESC: ${t`Cancel`}`
206 return h(Fragment, {},
207 focus && h('div', { id: 'focus-typing', className: focusIndex < 0 ? 'focus-typing-mismatch' : '' }, focus,
208 - hIcon('info', { style: { cursor: 'default' }, title: focusHint, onClick: () => alertDialog(focusHint) }) ),
208 + hIcon('info', { style: { cursor: 'default', marginLeft: '.3em' }, title: focusHint, onClick: () => alertDialog(focusHint) }) ),
209 h('ul', { ref, className: 'dir' },
210 msgInstead ? h('p', {}, msgInstead)
211 : thisPage.map((entry, idx) =>