Skip to content

Commit 31bcb02

Browse files
committed
520 - client - Reveret “Set sidebar to width 72”
1 parent 2e9f126 commit 31bcb02

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

client/src/pages/embedded/app-events/AppEvents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const AppEvents = () => {
4646
/>
4747
}
4848
leftSidebarHeader={<Header title="App Events" />}
49-
leftSidebarWidth="72"
49+
leftSidebarWidth="64"
5050
>
5151
{appEvents && appEvents.length > 0 ? (
5252
<AppEventList appEvents={appEvents} />

client/src/pages/embedded/connected-users/ConnectedUsers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ const ConnectedUsers = () => {
364364
</Form>
365365
}
366366
leftSidebarHeader={<Header title="Connected Users" />}
367-
leftSidebarWidth="72"
367+
leftSidebarWidth="64"
368368
>
369369
<PageLoader errors={[connectedUsersError]} loading={connectedUsersLoading}>
370370
{connectedUsers && connectedUsers?.length > 0 ? (

client/src/pages/embedded/connections/Connections.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export const Connections = () => {
196196
</>
197197
}
198198
leftSidebarHeader={<Header position="sidebar" title="Connections" />}
199-
leftSidebarWidth="72"
199+
leftSidebarWidth="64"
200200
>
201201
<PageLoader
202202
errors={[allConnectionsError, connectionsError, tagsError]}

client/src/pages/embedded/integration-instance-configurations/IntegrationInstanceConfigurations.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ const IntegrationInstanceConfigurations = () => {
261261
</>
262262
}
263263
leftSidebarHeader={<Header position="sidebar" title="Instance Configurations" />}
264-
leftSidebarWidth="72"
264+
leftSidebarWidth="64"
265265
>
266266
<PageLoader
267267
errors={[

client/src/pages/embedded/workflow-executions/WorkflowExecutions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ export const WorkflowExecutions = () => {
438438
</div>
439439
}
440440
leftSidebarHeader={<Header position="sidebar" title="Execution History" />}
441-
leftSidebarWidth="72"
441+
leftSidebarWidth="64"
442442
>
443443
<PageLoader errors={[workflowExecutionsError]} loading={workflowExecutionsIsLoading}>
444444
{workflowExecutions && workflowExecutions.length > 0 ? (

0 commit comments

Comments
 (0)