Interval
{{ task().interval }}
Nodes
@if (Array.isArray(task().nodes)) { } @else {
{{ task().nodes }}
}
Ordering
{{ task().ordering }}
Retry If Failed
@if (task().retry_if_failed) { check_circle } @else { do_disturb_on }
Last Update
{{ task().last_update | date: "yyyy-MM-dd HH:mm:ss z" }}
Last Run
@if (Object.keys(task().last_runs).length > 0) { } @else {
-
}

Options

@for (option of Object.keys(task().options); track option) {
{{ option }} @if (!isBooleanAction(task().options[option])) { {{ task().options[option] }} }
}