fix(ui): bug parsing weighted service provider name
This commit is contained in:
parent
207ac94ed0
commit
7377ab7b95
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ export default {
|
||||||
},
|
},
|
||||||
getProviderLogoPath (service) {
|
getProviderLogoPath (service) {
|
||||||
const provider = this.getProvider(service)
|
const provider = this.getProvider(service)
|
||||||
const name = provider.name.toLowerCase()
|
const name = provider.toLowerCase()
|
||||||
|
|
||||||
if (name.includes('plugin-')) {
|
if (name.includes('plugin-')) {
|
||||||
return 'statics/providers/plugin.svg'
|
return 'statics/providers/plugin.svg'
|
||||||
|
|
Loading…
Reference in a new issue