1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-06 14:25:31 +02:00

fix custom logo not updated (#5634)

This commit is contained in:
Richard Wei 2021-09-30 15:55:08 +13:00 committed by GitHub
parent 0f33e4ae99
commit 34c2a16363
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -249,6 +249,10 @@ class AuthenticationController {
this.generateOAuthLoginURI();
return;
}
if(!this.logo){
await this.StateManager.initialize();
this.logo = this.StateManager.getState().application.logo;
}
this.generateOAuthLoginURI();
if (this.$stateParams.logout || this.$stateParams.error) {