fix(ui): bug parsing weighted service provider name

This commit is contained in:
Anton Kindblad
2021-10-18 14:52:14 +02:00
committed by GitHub
parent 207ac94ed0
commit 7377ab7b95

View File

@@ -64,7 +64,7 @@ export default {
},
getProviderLogoPath (service) {
const provider = this.getProvider(service)
const name = provider.name.toLowerCase()
const name = provider.toLowerCase()
if (name.includes('plugin-')) {
return 'statics/providers/plugin.svg'