update song text in show tooltip

This commit is contained in:
2022-04-03 13:19:58 +02:00
parent 3e85abce11
commit a01fb852ba
2 changed files with 6 additions and 4 deletions

View File

@@ -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

View File

@@ -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 {}