1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-10-26 08:55:23 +03:00

Fixed "ugly" arrow on responsive menu

This commit is contained in:
Adolfo Gómez García 2021-02-05 10:59:01 +01:00
parent cdd5ca5c8f
commit 4838f01a74
2 changed files with 2 additions and 4 deletions

View File

@ -26,8 +26,7 @@
<!-- shriked menu -->
<mat-menu x-position="before" #shrink="matMenu">
<button mat-menu-item *ngIf="api.user.isLogged" [matMenuTriggerFor]="userMenu">{{api.user.user}}</button>
<button mat-menu-item [matMenuTriggerFor]="appMenu">{{ lang.name }} <i
class="material-icons">arrow_drop_down</i></button>
<button mat-menu-item [matMenuTriggerFor]="appMenu">{{ lang.name }} </button>
<button mat-menu-item routerLink="/client-download">
<uds-translate>UDS Client</uds-translate>

View File

@ -1,4 +1,3 @@
import { HttpClient } from '@angular/common/http';
import { UDSApiServiceType } from '../uds-api.service-type';
declare var django: any;
@ -104,7 +103,7 @@ export class Plugin {
this.delay
);
} else { // error
this.api.gui.alert(django.gettext('Error launching service'), data.error)
this.api.gui.alert(django.gettext('Error launching service'), data.error);
}
});
}