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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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'