Skip to content

Commit

Permalink
fixup! fixup! fixup! chore: upgrade typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
akurinnoy committed Nov 15, 2024
1 parent ce36d6b commit 46bf256
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ class WorkspaceEvents extends React.PureComponent<Props> {
const events = this.props.eventsFromResourceVersionFn(startResourceVersion);
const eventItems = this.getEventItems(events);

const numberOfEvents = <span>{eventItems.length + (eventItems.length === 1 ? ' event' : ' events')}</span>;
const numberOfEvents = (
<span>{eventItems.length + (eventItems.length === 1 ? ' event' : ' events')}</span>
);

const tailStackItem = (
<StackItem>
Expand Down

0 comments on commit 46bf256

Please sign in to comment.