diff options
Diffstat (limited to 'client/src/app/modal/quick-settings-modal.component.html')
-rw-r--r-- | client/src/app/modal/quick-settings-modal.component.html | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/client/src/app/modal/quick-settings-modal.component.html b/client/src/app/modal/quick-settings-modal.component.html index e2ea51b92..188a51173 100644 --- a/client/src/app/modal/quick-settings-modal.component.html +++ b/client/src/app/modal/quick-settings-modal.component.html | |||
@@ -3,11 +3,15 @@ | |||
3 | <h4 i18n class="modal-title">Settings</h4> | 3 | <h4 i18n class="modal-title">Settings</h4> |
4 | <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon> | 4 | <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon> |
5 | </div> | 5 | </div> |
6 | 6 | ||
7 | <div class="modal-body"> | 7 | <div class="modal-body"> |
8 | <div i18n class="mb-4 quick-settings-title">Display settings</div> | 8 | <div i18n class="mb-4 quick-settings-title">Display settings</div> |
9 | 9 | ||
10 | <my-account-video-settings *ngIf="!isUserLoggedIn()" [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"> | 10 | <my-account-video-settings |
11 | *ngIf="!isUserLoggedIn()" | ||
12 | [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true" | ||
13 | > | ||
14 | |||
11 | <ng-container ngProjectAs="inner-title"> | 15 | <ng-container ngProjectAs="inner-title"> |
12 | <div i18n class="mb-4 mt-4 quick-settings-title">Video settings</div> | 16 | <div i18n class="mb-4 mt-4 quick-settings-title">Video settings</div> |
13 | </ng-container> | 17 | </ng-container> |
@@ -15,6 +19,9 @@ | |||
15 | 19 | ||
16 | <div i18n class="mb-4 mt-4 quick-settings-title">Interface settings</div> | 20 | <div i18n class="mb-4 mt-4 quick-settings-title">Interface settings</div> |
17 | 21 | ||
18 | <my-account-interface-settings *ngIf="!isUserLoggedIn()" [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"></my-account-interface-settings> | 22 | <my-account-interface-settings |
23 | *ngIf="!isUserLoggedIn()" | ||
24 | [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true" | ||
25 | ></my-account-interface-settings> | ||
19 | </div> | 26 | </div> |
20 | </ng-template> | 27 | </ng-template> |