diff --git a/src/app/authorize/components/form-authorize/form-authorize.component.html b/src/app/authorize/components/form-authorize/form-authorize.component.html index 7fff3f07b9..ca7f52ea4f 100644 --- a/src/app/authorize/components/form-authorize/form-authorize.component.html +++ b/src/app/authorize/components/form-authorize/form-authorize.component.html @@ -152,6 +152,7 @@ { +_user.getUserSession().subscribe((session) => { if (session.oauthSession && session.oauthSession.error) { this.showAuthorizationComponent = false } else { @@ -36,6 +37,9 @@ export class AuthorizeComponent implements OnInit { this._togglz .getStateOf('SIGN_IN_UPDATES_V1') .pipe(take(1)) - .subscribe((value) => (this.signInUpdatesV1Togglz = value)) + .subscribe((value) => { + this.loading = false; + this.signInUpdatesV1Togglz = value + }) } } diff --git a/src/app/cdk/info-drop-down/info-drop-down.component.scss b/src/app/cdk/info-drop-down/info-drop-down.component.scss index a969d89ebc..f31fc8179d 100644 --- a/src/app/cdk/info-drop-down/info-drop-down.component.scss +++ b/src/app/cdk/info-drop-down/info-drop-down.component.scss @@ -1,35 +1,39 @@ -.description-container { - padding: 8px; - margin-top: 4px; - margin-bottom: 8px; - max-width: 100%; - width: 100%; - display: inline-block; - overflow: hidden; - word-break: break-word; - box-sizing: border-box; -} -.description-client { - margin: 0 !important; -} -mat-icon { - margin-top: 2px; // Compensates mat icon bottom with space - margin-left: 4px; - [dir='rtl'] & { - margin-right: 4px; - } - - text-decoration: none !important; -} - -.university-dropdown { - display: flex; - font-weight: bold; - mat-icon { - cursor: pointer; - } -} - -:host { - display: block; -} +.description-container { + padding: 8px; + margin-top: 4px; + margin-bottom: 8px; + max-width: 100%; + width: 100%; + display: inline-block; + overflow: hidden; + word-break: break-word; + box-sizing: border-box; +} +.description-client { + margin: 0 !important; +} +b { + word-break: break-all; +} + +mat-icon { + margin-top: 2px; // Compensates mat icon bottom with space + margin-left: 4px; + [dir='rtl'] & { + margin-right: 4px; + } + + text-decoration: none !important; +} + +.university-dropdown { + display: flex; + font-weight: bold; + mat-icon { + cursor: pointer; + } +} + +:host { + display: block; +}