MCPcopy Index your code
hub / github.com/coder/coder / displayWorkspaceBuildDuration

Function displayWorkspaceBuildDuration

site/src/utils/workspace.tsx:87–93  ·  view source on GitHub ↗
(
	build: TypesGen.WorkspaceBuild,
	inProgressLabel = "In progress",
)

Source from the content-addressed store, hash-verified

85};
86
87export const displayWorkspaceBuildDuration = (
88 build: TypesGen.WorkspaceBuild,
89 inProgressLabel = "In progress",
90): string => {
91 const duration = getWorkspaceBuildDurationInSeconds(build);
92 return duration ? `${duration} seconds` : inProgressLabel;
93};
94
95export enum agentVersionStatus {
96 Updated = 1,

Callers 1

WorkspaceBuildPageViewFunction · 0.90

Calls 1

Tested by

no test coverage detected