Skip to content

Commit

Permalink
Fix wording of run_expired event
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed Feb 19, 2019
1 parent ea541c3 commit 9980249
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/TimelineEvent.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ it('renders appropriate summary for different event types', () => {
event: {
type: "run_expired"
},
summary: "πŸ“†Β resuming due to child run expiring"
summary: "πŸ“†Β exiting due to expiration"
},
{
event: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/TimelineEvent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export class TimelineEvent extends React.Component<Props, State> {
case "msg_wait":
return ["⏳", <>waiting for message...</>];
case "run_expired":
return ["πŸ“†", <>resuming due to child run expiring</>];
return ["πŸ“†", <>exiting due to expiration</>];
case "run_result_changed":
return ["πŸ“ˆ", <>run result <i>{event.name}</i> changed to <i>{event.value}</i></>];
case "session_triggered":
Expand Down

0 comments on commit 9980249

Please sign in to comment.