TRIGGER DETAILS @if (shouldShowTheTriggerCardContent()) {
@if (jobs?.length === 0) {  WARNING Not found any eligible job classes for quartz-manager!

Please, make sure you have extended AbstractQuartzManagerJob and set the app prop quartz-manager.jobClassPackages with the correct java package

}
Trigger Name @if (simpleTriggerReactiveForm.controls.triggerName.errors?.required) { Name is required }
Job Class @for (job of jobs; track job) { {{ job }} } @if (simpleTriggerReactiveForm.controls.jobClass.errors?.required) { Job is required }
Misfire Instruction FIRE NOW RESCHEDULE NOW WITH EXISTING REPEAT COUNT RESCHEDULE NOW WITH REMAINING REPEAT COUNT RESCHEDULE NEXT WITH REMAINING COUNT RESCHEDULE NEXT WITH EXISTING COUNT @if (simpleTriggerReactiveForm.controls.misfireInstruction.errors?.required) { The misfire instruction is required }

Start Date (optional)
End Date (optional) @if (simpleTriggerReactiveForm.controls.triggerPeriod.errors?.invalidTriggerPeriod) { the end date cannot be before the start date }
Repeat Interval [in mills] @if (simpleTriggerReactiveForm.controls.triggerRecurrence.errors?.invalidTriggerRecurrence) { repeatCount and repeatInterval must be both set or unset }
Repeat Count @if (simpleTriggerReactiveForm.controls.triggerRecurrence.errors?.invalidTriggerRecurrence) { repeatCount and repeatInterval must be both set or unset }

@if (simpleTriggerReactiveForm.enabled) {
} @if (simpleTriggerReactiveForm.enabled) {
} @if (!simpleTriggerReactiveForm.enabled) {
}
}