Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
<section class="cron-editor-main">
<mat-tab-group class="cron-editor-container" (selectedIndexChange)="onTabFocus($event)"
[backgroundColor]="backgroundColor" [color]="color">

<section class="cron-editor-main">
<!-- Advanced-->
<mat-tab class="cron-editor-tab" [label]="resource?.selectCronExpression.description" *ngIf="!options.hideAdvancedTab">
<dxc-label id="cron-editor-tab" [text]="resource?.selectCronExpression.description"></dxc-label>
<div class="cron-editor-tab-content" [formGroup]="advancedForm">

<dxc-select class="main-dd-filter" (onChange)="isExpression=!isExpression" [customHandler]="false" tabIndexValue="-1" tabindex="0"
<dxc-select class="main-dd-filter" [ngClass]="options.formSelectClass" (onChange)="isExpression=!isExpression" [customHandler]="false" tabIndexValue="-1" tabindex="0"
aria-labelledby="lbl_cronexp" id="cronexp" matTooltip="" margin="small" size="fitContent"
formControlName="selectedType" >
<dxc-select-option *ngFor="let exp of expressionList" value="{{exp.value}}" label="{{exp.name}}">
Expand Down Expand Up @@ -116,7 +113,7 @@
</div>

</div>
</mat-tab>
</mat-tab-group>


</section>