Skip to content

Commit

Permalink
updating default values
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic committed Jun 12, 2020
1 parent cc5f6f1 commit b2e0bcb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export class EditJobFlyoutUI extends Component {
jobDescription: '',
jobGroups: [],
jobModelMemoryLimit: '',
jobModelSnapshotRetentionDays: 1,
jobDailyModelSnapshotRetentionAfterDays: 1,
jobModelSnapshotRetentionDays: 10,
jobDailyModelSnapshotRetentionAfterDays: 10,
jobDetectors: [],
jobDetectorDescriptions: [],
jobCustomUrls: [],
Expand Down Expand Up @@ -134,7 +134,7 @@ export class EditJobFlyoutUI extends Component {
: '';

const modelSnapshotRetentionDays =
job.model_snapshot_retention_days !== undefined ? job.model_snapshot_retention_days : 1;
job.model_snapshot_retention_days !== undefined ? job.model_snapshot_retention_days : 10;

const dailyModelSnapshotRetentionAfterDays =
job.daily_model_snapshot_retention_after_days !== undefined
Expand Down

0 comments on commit b2e0bcb

Please sign in to comment.