From c61c816e3243f317df380a7321c0df9f638adbc4 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Fri, 22 Oct 2021 22:59:13 +0200 Subject: [PATCH] . --- frontend/src/app/components/main.component.pug | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/frontend/src/app/components/main.component.pug b/frontend/src/app/components/main.component.pug index cd8f6ae..71d03eb 100644 --- a/frontend/src/app/components/main.component.pug +++ b/frontend/src/app/components/main.component.pug @@ -3,38 +3,34 @@ button.btn.mt-auto( (click)='openConfig()', - placement='right', - ngbTooltip='Manage configs' + title='Manage configs' ) fa-icon([icon]='_configIcon', [fixedWidth]='true', size='lg') button.btn( (click)='openSettings()', *ngIf='loginService.user', - placement='right', - ngbTooltip='Settings' + title='Settings' ) fa-icon([icon]='_settingsIcon', [fixedWidth]='true', size='lg') a.btn.mt-3( href='/login', *ngIf='!loginService.user', - placement='right', - ngbTooltip='Log in' + title='Log in' ) fa-icon([icon]='_loginIcon', [fixedWidth]='true', size='lg') button.btn.mt-3( (click)='logout()', *ngIf='loginService.user', - placement='right', - ngbTooltip='Log out' + title='Log out' ) fa-icon([icon]='_logoutIcon', [fixedWidth]='true', size='lg') .terminal iframe(#iframe, [hidden]='!showApp') - .alert.alert-warning.d-flex.border-0.m-0(*ngIf='!loginService.user') + .alert.alert-warning.d-flex.border-0.m-0(*ngIf='showApp && !loginService.user') fa-icon.me-2([icon]='_saveIcon', [fixedWidth]='true') div div To save profiles and settings, #[a(href='/login') log in].