admin/plugins: nicer name column by removing 'hfs-'
Massimo Melina committed
May 16, 2024 at 11:39 UTC
4072ee284e12ad9ac72bcf6e74f5dfa16283aa6e
1 file changed
+1
-1
admin/src/InstalledPlugins.ts
+1
-1
@@ -138,7 +138,7 @@ export function renderName({ row, value }: any) {
138
repo?.includes('//') ? h(Link, { href: repo, target: 'plugin' }, value)
139
: !repo ? value
140
: with_(repo?.split('/'), arr => h(Fragment, {},
141
- h(Link, { href: 'https://github.com/' + repo, target: 'plugin' }, arr[1]),
141
+ h(Link, { href: 'https://github.com/' + repo, target: 'plugin' }, arr[1].replace(/hfs-/, '')),
142
'\xa0by ', arr[0]
143
))
144
)