Skip to content
Snippets Groups Projects
Verified Commit b3ed838d authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #7867 fix event syntaxe for material v6

parent 94621f5b
No related branches found
No related tags found
No related merge requests found
...@@ -106,7 +106,7 @@ ...@@ -106,7 +106,7 @@
<span *ngFor="let action of group.groupActions" style="width:100%;"> <span *ngFor="let action of group.groupActions" style="width:100%;">
<mat-chip color="primary" (click)="openSettings(group,action)" matTooltip="id : {{action.id}}" [ngStyle]="{'font-weight': action.default_action_list == true ? 'bold' : ''}" <mat-chip color="primary" (click)="openSettings(group,action)" matTooltip="id : {{action.id}}" [ngStyle]="{'font-weight': action.default_action_list == true ? 'bold' : ''}"
style="cursor:pointer;margin:5px;border-radius:0px;display:flex;" *ngIf="action.checked == true" style="cursor:pointer;margin:5px;border-radius:0px;display:flex;" *ngIf="action.checked == true"
selectable="true" removable="true" (remove)="unlinkAction(group,action)"> selectable="true" removable="true" (removed)="unlinkAction(group,action)">
&nbsp; &nbsp;
<span>{{action.label_action}}</span>&nbsp; <span>{{action.label_action}}</span>&nbsp;
<small *ngIf="action.default_action_list == true">({{lang.default}})</small> <small *ngIf="action.default_action_list == true">({{lang.default}})</small>
......
...@@ -154,7 +154,7 @@ ...@@ -154,7 +154,7 @@
<mat-chip-list #chipList class="mat-chip-list-stacked"> <mat-chip-list #chipList class="mat-chip-list-stacked">
<span *ngFor="let notif of crontab;let i = index"> <span *ngFor="let notif of crontab;let i = index">
<mat-chip color="primary" *ngIf="notif.state == 'normal'" style="margin:5px;border-radius:0px;display:flex;" <mat-chip color="primary" *ngIf="notif.state == 'normal'" style="margin:5px;border-radius:0px;display:flex;"
selectable="false" removable="true" (remove)="deleteCron(i)"> selectable="false" removable="true" (removed)="deleteCron(i)">
{{notif.description}} {{notif.description}}
<span style="flex: 1 1 auto;"></span> <span style="flex: 1 1 auto;"></span>
<b>{{notif.m}}&nbsp;&nbsp;{{notif.h}}&nbsp;&nbsp;{{notif.dom}}&nbsp;&nbsp;{{notif.mon}}&nbsp;&nbsp;{{notif.dow}}</b> <b>{{notif.m}}&nbsp;&nbsp;{{notif.h}}&nbsp;&nbsp;{{notif.dom}}&nbsp;&nbsp;{{notif.mon}}&nbsp;&nbsp;{{notif.dow}}</b>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment