mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.5 KiB
38 lines
1.5 KiB
<tr [class.expanded]="expanded" class="table-items-row">
|
|
<td class="cell-label">
|
|
<span class="badge rounded-pill badge-{{statusClass}}">{{status}}</span>
|
|
</td>
|
|
<td class="cell-40">
|
|
<span class="truncate">{{event.eventName}}</span>
|
|
</td>
|
|
<td class="cell-40">
|
|
<small class="truncate">{{event.skipReason}}</small>
|
|
</td>
|
|
<td class="cell-actions">
|
|
<button type="button" class="btn btn-outline-secondary btn-expand" [class.expanded]="expanded" [disabled]="!event.error && !event.actionData" (click)="expandedChange.emit()">
|
|
<i class="icon-settings"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<tr *ngIf="expanded">
|
|
<td colspan="4" class="details">
|
|
<div class="event-header">
|
|
<h4>{{ 'common.details' | sqxTranslate }}</h4>
|
|
</div>
|
|
|
|
<div class="row event-dump">
|
|
<div class="form-group" *ngIf="event.actionData">
|
|
<label>{{ 'rules.actionData' | sqxTranslate }}</label>
|
|
|
|
<sqx-code-editor [ngModel]="data" [disabled]="true" [wordWrap]="true" height="auto"></sqx-code-editor>
|
|
</div>
|
|
|
|
<div class="form-group" *ngIf="event.error">
|
|
<label>{{ 'common.error' | sqxTranslate }}</label>
|
|
|
|
<sqx-code-editor [ngModel]="event.error" [disabled]="true" [wordWrap]="true" height="auto"></sqx-code-editor>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr class="spacer"></tr>
|