Skip to content

Commit 43e5351

Browse files
committed
198 - apply alphabetical ordering of classNames
1 parent 39644b5 commit 43e5351

File tree

37 files changed

+41
-41
lines changed

37 files changed

+41
-41
lines changed

client/src/ee/pages/automation/api-platform/api-clients/components/ApiClientTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ const ApiClientTable = ({apiClients}: ApiClientTableProps) => {
170170
className={twMerge(
171171
'whitespace-nowrap',
172172
cell.id.endsWith('actions') && 'flex justify-end',
173-
cell.id.endsWith('enabled') && 'flex ml-6'
173+
cell.id.endsWith('enabled') && 'ml-6 flex'
174174
)}
175175
key={cell.id}
176176
onClick={(event) => {

client/src/ee/pages/automation/api-platform/api-collections/components/ApiCollectionEndpointListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const ApiCollectionEndpointListItem = ({
8686
<div className="flex flex-1 items-center">
8787
<Badge
8888
className={twMerge(
89-
'w-20 mr-4 border-transparent',
89+
'mr-4 w-20 border-transparent',
9090
apiCollectionEndpoint.httpMethod === 'DELETE' && 'bg-red-400',
9191
apiCollectionEndpoint.httpMethod === 'GET' && 'bg-blue-400',
9292
apiCollectionEndpoint.httpMethod === 'POST' && 'bg-green-400',

client/src/ee/pages/settings/platform/api-connectors/components/ApiConnectorEndpointListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const ApiConnectorEndpointListItem = ({apiConnectorEndpoint}: {apiConnectorEndpo
2020
<div className="flex flex-1 items-center">
2121
<Badge
2222
className={twMerge(
23-
'w-20 mr-4 border-transparent',
23+
'mr-4 w-20 border-transparent',
2424
apiConnectorEndpoint.httpMethod === 'DELETE' && 'bg-red-400',
2525
apiConnectorEndpoint.httpMethod === 'GET' && 'bg-blue-400',
2626
apiConnectorEndpoint.httpMethod === 'POST' && 'bg-green-400',

client/src/ee/pages/settings/platform/api-connectors/components/ApiConnectorListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ const ApiConnectorListItem = ({apiConnector}: ApiConnectorItemProps) => {
8181
<TooltipContent>{apiConnector.description}</TooltipContent>
8282
</Tooltip>
8383
) : (
84-
<div className="space-x-1 ">
84+
<div className="space-x-1">
8585
<span className="font-semibold">{apiConnector.title}</span>
8686

8787
<span>-</span>

client/src/pages/account/public/Login.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const Login = () => {
118118
control={form.control}
119119
name="rememberMe"
120120
render={({field}) => (
121-
<FormItem className="flex items-center space-x-3 space-y-0 ">
121+
<FormItem className="flex items-center space-x-3 space-y-0">
122122
<FormControl>
123123
<Checkbox checked={field.value} onCheckedChange={field.onChange} />
124124
</FormControl>

client/src/pages/automation/project-instances/components/project-instance-dialog/ProjectInstanceDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ const ProjectInstanceDialog = ({
285285
'group flex flex-col border-l-4 py-2 pl-4 md:border-l-0 md:border-t-4 md:pb-0 md:pl-0 md:pt-4',
286286
index <= activeStepIndex
287287
? 'border-gray-900 hover:border-gray-800'
288-
: 'border-gray-200 hover:border-gray-30'
288+
: 'hover:border-gray-30 border-gray-200'
289289
)}
290290
></div>
291291
</li>

client/src/pages/automation/project-instances/components/project-instance-dialog/ProjectInstanceDialogBasicStepProjectsComboBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {FocusEventHandler} from 'react';
66

77
const ProjectLabel = ({project}: {project: Project}) => (
88
<div className="flex items-center">
9-
<span className="mr-1 ">{project.name}</span>
9+
<span className="mr-1">{project.name}</span>
1010

1111
<span className="text-xs text-gray-500">{project?.tags?.map((tag) => tag.name).join(', ')}</span>
1212
</div>

client/src/pages/automation/project/components/projects-sidebar/ProjectsSidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const ProjectsSidebar = ({projectId}: {projectId: number}) => {
2525
projects.map((curProject) => (
2626
<div
2727
className={twMerge(
28-
'py-3 px-2 flex cursor-pointer items-center justify-between hover:bg-background/50 rounded-lg text-sm',
28+
'flex cursor-pointer items-center justify-between rounded-lg px-2 py-3 text-sm hover:bg-background/50',
2929
curProject.id === projectId && 'bg-background/50'
3030
)}
3131
key={curProject.id}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const jobStatusOptions = [
5454

5555
const ProjectLabel = ({project}: {project: Project}) => (
5656
<div className="flex items-center">
57-
<span className="mr-1 ">{project.name}</span>
57+
<span className="mr-1">{project.name}</span>
5858

5959
<span className="text-xs text-gray-500">{project?.tags?.map((tag) => tag.name).join(', ')}</span>
6060
</div>
@@ -391,7 +391,7 @@ export const WorkflowExecutions = () => {
391391
? projectInstances?.map((projectInstance) => ({
392392
label: (
393393
<span className="flex items-center">
394-
<span className="mr-1 ">
394+
<span className="mr-1">
395395
{projectInstance.name} V{projectInstance.projectVersion}
396396
</span>
397397

client/src/pages/automation/workflow-executions/components/workflow-execution-sheet/WorkflowExecutionSheetAccordion.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const WorkflowExecutionSheetAccordion = ({job, triggerExecution}: {job: Job; tri
2828
<span
2929
className={twMerge(
3030
(!taskExecutionsCompleted || !triggerExecutionCompleted) && 'text-destructive',
31-
'font-semibold uppercase text-base'
31+
'text-base font-semibold uppercase'
3232
)}
3333
>
3434
{taskExecutionsCompleted && triggerExecutionCompleted ? 'Workflow executed' : 'Workflow failed'}

0 commit comments

Comments
 (0)