Thanks to visit codestin.com Credit goes to github.com
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.
make fmt
1 parent e2cf35e commit 5a02622Copy full SHA for 5a02622
site/src/pages/WorkspacePage/Workspace.tsx
@@ -355,13 +355,15 @@ export const Workspace: FC<WorkspaceProps> = ({
355
color: theme.palette.text.secondary,
356
}}
357
>
358
- {// Calculate total status count
359
- selectedResource.agents
360
- ?.flatMap((agent) => agent.apps ?? [])
361
- .reduce(
362
- (count, app) => count + (app.statuses?.length ?? 0),
363
- 0,
364
- )}{" "}
+ {
+ // Calculate total status count
+ selectedResource.agents
+ ?.flatMap((agent) => agent.apps ?? [])
+ .reduce(
+ (count, app) => count + (app.statuses?.length ?? 0),
+ 0,
365
+ )
366
+ }{" "}
367
Total
368
</div>
369
0 commit comments