Skip to content

Commit

Permalink
updatedAt is not a part of savedObject attributes passed back from al…
Browse files Browse the repository at this point in the history
…erting, it's at the top level
  • Loading branch information
dhurley14 committed Jan 28, 2020
1 parent 4e024b5 commit 4a096da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export const signalRulesAlertType = ({
const createdBy: string = savedObject.attributes.createdBy;
const createdAt: string = savedObject.attributes.createdAt;
const updatedBy: string = savedObject.attributes.updatedBy;
const updatedAt: string = savedObject.attributes.updatedAt;
const updatedAt: string = savedObject.updated_at ?? '';
const interval: string = savedObject.attributes.schedule.interval;
const enabled: boolean = savedObject.attributes.enabled;
const gap = getGapBetweenRuns({
Expand Down

0 comments on commit 4a096da

Please sign in to comment.