We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 140a80b commit efbbd49Copy full SHA for efbbd49
client/containers/workflow/helpers/map-timeline-events.js
@@ -149,6 +149,12 @@ export default function(historyEvents) {
149
.duration(e.details.startToFireTimeoutSeconds, 'seconds')
150
.format()})`,
151
});
152
+ } else if (e.eventType === WORKFLOW_EVENT_TYPE.TimerCanceled) {
153
+ const timerStartedEvent = hash[`timer${e.details.timerId}`];
154
+
155
+ if (timerStartedEvent) {
156
+ timerStartedEvent.eventIds.push(e.eventId);
157
+ }
158
} else if (e.eventType === WORKFLOW_EVENT_TYPE.TimerFired) {
159
const timerStartedEvent = hash[`timer${e.details.timerId}`];
160
0 commit comments