@samitouri / QOSami-HFS / commits / 9b1f1118

better layout

Massimo Melina committed May 24, 2024 at 14:21 UTC 9b1f1118fcc88b86fded951fe7f8e6081e013b3b
1 file changed +1 -1
admin/src/InstalledPlugins.ts
+1 -1
@@ -143,7 +143,7 @@ export function renderName({ row, value }: any) {
143 errorIcon(row.error),
144 repo?.includes('//') ? h(Link, { href: repo, target: 'plugin' }, value)
145 : !repo ? value
146 - : with_(repo?.split('/'), arr => h(Box, { sx: { textWrap: 'wrap' } },
146 + : with_(repo?.split('/'), arr => h('span', { style: { textWrap: 'wrap' } },
147 h(Link, { href: 'https://github.com/' + repo, target: 'plugin', onClick(ev) { ev.stopPropagation() } }, arr[1].replace(/hfs-/, '')),
148 '\xa0by ', arr[0]
149 ))