diff --git a/frontend/src/features/timeline/TimelineCall.tsx b/frontend/src/features/timeline/TimelineCall.tsx index 361e795db..e371081a0 100644 --- a/frontend/src/features/timeline/TimelineCall.tsx +++ b/frontend/src/features/timeline/TimelineCall.tsx @@ -2,8 +2,9 @@ import type { CallEvent } from '../../protos/xyz/block/ftl/v1/console/console_pb import { verbRefString } from '../verbs/verb.utils' export const TimelineCall = ({ call }: { call: CallEvent }) => { + const title = `${call.sourceVerbRef?.module ? `${verbRefString(call.sourceVerbRef)} -> ` : ''}${call.destinationVerbRef ? verbRefString(call.destinationVerbRef) : ''}` return ( - + {call.sourceVerbRef?.module && ( <> {verbRefString(call.sourceVerbRef)} diff --git a/frontend/src/features/timeline/TimelineDeploymentCreated.tsx b/frontend/src/features/timeline/TimelineDeploymentCreated.tsx index 1bee4632d..a3a4f879a 100644 --- a/frontend/src/features/timeline/TimelineDeploymentCreated.tsx +++ b/frontend/src/features/timeline/TimelineDeploymentCreated.tsx @@ -1,10 +1,11 @@ import type { DeploymentCreatedEvent } from '../../protos/xyz/block/ftl/v1/console/console_pb' export const TimelineDeploymentCreated = ({ deployment }: { deployment: DeploymentCreatedEvent }) => { + const title = `Created deployment ${deployment.key} for language ${deployment.language}` return ( - <> + Created deployment {deployment.key} for language{' '} {deployment.language} - + ) } diff --git a/frontend/src/features/timeline/TimelineDeploymentUpdated.tsx b/frontend/src/features/timeline/TimelineDeploymentUpdated.tsx index 110b7a301..79b89b452 100644 --- a/frontend/src/features/timeline/TimelineDeploymentUpdated.tsx +++ b/frontend/src/features/timeline/TimelineDeploymentUpdated.tsx @@ -1,11 +1,12 @@ import type { DeploymentUpdatedEvent } from '../../protos/xyz/block/ftl/v1/console/console_pb' export const TimelineDeploymentUpdated = ({ deployment }: { deployment: DeploymentUpdatedEvent }) => { + const title = `Updated deployment ${deployment.key} min replicas to ${deployment.minReplicas} (previously ${deployment.prevMinReplicas})` return ( - <> + Updated deployment {deployment.key} min replicas to{' '} {deployment.minReplicas} (previously{' '} {deployment.prevMinReplicas}) - + ) } diff --git a/frontend/src/features/timeline/TimelineLog.tsx b/frontend/src/features/timeline/TimelineLog.tsx index 91b696132..77b05b1d9 100644 --- a/frontend/src/features/timeline/TimelineLog.tsx +++ b/frontend/src/features/timeline/TimelineLog.tsx @@ -1,5 +1,5 @@ import type { LogEvent } from '../../protos/xyz/block/ftl/v1/console/console_pb' export const TimelineLog = ({ log }: { log: LogEvent }) => { - return {log.message} + return {log.message} }