@samitouri / QOSami-HFS / commits / d62ad968

fix: (regression 0.51.0-beta10)frontend crashed by list-uploader plugin

Massimo Melina committed Jan 23, 2024 at 22:08 UTC d62ad9680958d8c0ab9cec1da64f51fa546edc49
1 file changed +1 -1
plugins/list-uploader/public/main.js
+1 -1
@@ -17,7 +17,7 @@
17 }, [data])
18 const iconOnly = display === 'tooltip'
19 return text && HFS.h('span', { className: 'uploader', title: HFS.t`Uploader` + (iconOnly ? ' ' + text : '') },
20 - HFS.hIcon('upload'), ' ', !iconOnly && text, h('span', { 'aria-hidden': true }, ' – '))
20 + HFS.hIcon('upload'), ' ', !iconOnly && text, HFS.h('span', { 'aria-hidden': true }, ' – '))
21 }
22
23 function getDetails(batched) {