update song text in show tooltip
This commit is contained in:
@@ -11,13 +11,13 @@
|
|||||||
</mat-select>
|
</mat-select>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</span>
|
</span>
|
||||||
<app-menu-button @fade *ngIf="!edit" (click)="onEdit()" [icon]="faEdit" class="btn-edit btn-icon"></app-menu-button>
|
<app-menu-button @fade *ngIf="!edit" (click)="onEdit()" [icon]="faEdit" class="btn-edit btn-icon" matTooltip="Lied für diese Veranstaltung bearbeiten"> </app-menu-button>
|
||||||
<app-menu-button @fade *ngIf="!edit" (click)="onDelete()" [icon]="faDelete" class="btn-delete btn-icon"></app-menu-button>
|
<app-menu-button @fade *ngIf="!edit" (click)="onDelete()" [icon]="faDelete" class="btn-delete btn-icon" matTooltip="Lied aus Veranstaltung entfernen"></app-menu-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<mat-form-field @fade appearance="outline" *ngIf="edit" >
|
<mat-form-field @fade appearance="outline" *ngIf="edit" >
|
||||||
<mat-label>Songtext</mat-label>
|
<mat-label>Songtext</mat-label>
|
||||||
<textarea
|
<textarea matTooltip="Tonart ändern"
|
||||||
[cdkTextareaAutosize]="true"
|
[cdkTextareaAutosize]="true"
|
||||||
[formControl]="editSongControl"
|
[formControl]="editSongControl"
|
||||||
matInput
|
matInput
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ import {MatMenuModule} from '@angular/material/menu';
|
|||||||
import {DragDropModule} from '@angular/cdk/drag-drop';
|
import {DragDropModule} from '@angular/cdk/drag-drop';
|
||||||
import {RoleModule} from '../../services/user/role.module';
|
import {RoleModule} from '../../services/user/role.module';
|
||||||
import {SortByModule} from '../../widget-modules/pipes/sort-by/sort-by.module';
|
import {SortByModule} from '../../widget-modules/pipes/sort-by/sort-by.module';
|
||||||
|
import {MatTooltipModule} from '@angular/material/tooltip';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [NewComponent, ListComponent, ListItemComponent, ShowComponent, SongComponent],
|
declarations: [NewComponent, ListComponent, ListItemComponent, ShowComponent, SongComponent],
|
||||||
@@ -62,6 +63,7 @@ import {SortByModule} from '../../widget-modules/pipes/sort-by/sort-by.module';
|
|||||||
DragDropModule,
|
DragDropModule,
|
||||||
RoleModule,
|
RoleModule,
|
||||||
SortByModule,
|
SortByModule,
|
||||||
|
MatTooltipModule,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class ShowsModule {}
|
export class ShowsModule {}
|
||||||
|
|||||||
Reference in New Issue
Block a user