Skip to content

Commit 3d5c60e

Browse files
2 parents 2ef3cc9 + 940e057 commit 3d5c60e

File tree

1 file changed

+13
-12
lines changed
  • frontend/src/components/Popups/GraphEnhancementDialog

1 file changed

+13
-12
lines changed

frontend/src/components/Popups/GraphEnhancementDialog/index.tsx

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -74,34 +74,34 @@ export default function GraphEnhancementDialog({ open, onClose }: { open: boolea
7474
<Tabs.Tab
7575
tabId={1}
7676
htmlAttributes={{
77-
'aria-label': 'Disconnected Nodes',
77+
'aria-label': 'Additional Instructions',
7878
}}
7979
>
80-
Disconnected Nodes
80+
Additional Instructions
8181
</Tabs.Tab>
8282
<Tabs.Tab
8383
tabId={2}
8484
htmlAttributes={{
85-
'aria-label': 'Duplication Nodes',
85+
'aria-label': 'Disconnected Nodes',
8686
}}
8787
>
88-
De-Duplication Of Nodes
88+
Disconnected Nodes
8989
</Tabs.Tab>
9090
<Tabs.Tab
9191
tabId={3}
9292
htmlAttributes={{
93-
'aria-label': 'Post Processing Jobs',
93+
'aria-label': 'Duplication Nodes',
9494
}}
9595
>
96-
Post Processing Jobs
96+
De-Duplication Of Nodes
9797
</Tabs.Tab>
9898
<Tabs.Tab
9999
tabId={4}
100100
htmlAttributes={{
101-
'aria-label': 'Additional Instructions',
101+
'aria-label': 'Post Processing Jobs',
102102
}}
103103
>
104-
Additional Instructions
104+
Post Processing Jobs
105105
</Tabs.Tab>
106106
</Tabs>
107107
</Flex>
@@ -123,17 +123,18 @@ export default function GraphEnhancementDialog({ open, onClose }: { open: boolea
123123
</div>
124124
</Tabs.TabPanel>
125125
<Tabs.TabPanel className='n-flex n-flex-col n-gap-token-4 n-p-token-6' value={activeTab} tabId={1}>
126-
<DeletePopUpForOrphanNodes deleteHandler={orphanNodesDeleteHandler} loading={orphanDeleteAPIloading} />
126+
<AdditionalInstructionsText closeEnhanceGraphSchemaDialog={onClose} />
127127
</Tabs.TabPanel>
128128
<Tabs.TabPanel className='n-flex n-flex-col n-gap-token-4 n-p-token-6' value={activeTab} tabId={2}>
129-
<DeduplicationTab />
129+
<DeletePopUpForOrphanNodes deleteHandler={orphanNodesDeleteHandler} loading={orphanDeleteAPIloading} />
130130
</Tabs.TabPanel>
131131
<Tabs.TabPanel className='n-flex n-flex-col n-gap-token-4 n-p-token-6' value={activeTab} tabId={3}>
132-
<PostProcessingCheckList />
132+
<DeduplicationTab />
133133
</Tabs.TabPanel>
134134
<Tabs.TabPanel className='n-flex n-flex-col n-gap-token-4 n-p-token-6' value={activeTab} tabId={4}>
135-
<AdditionalInstructionsText closeEnhanceGraphSchemaDialog={onClose} />
135+
<PostProcessingCheckList />
136136
</Tabs.TabPanel>
137+
137138
</Dialog.Content>
138139
</Dialog>
139140
);

0 commit comments

Comments
 (0)