@@ -58,9 +58,6 @@ import { NotificationsContext } from "@app/components/NotificationsContext";
58
58
import { getAxiosErrorMessage } from "@app/utils/utils" ;
59
59
import { useFetchTrackers } from "@app/queries/trackers" ;
60
60
import { useFetchApplications } from "@app/queries/applications" ;
61
- import { WaveStakeholdersTable } from "./components/stakeholders-table" ;
62
- import { WaveApplicationsTable } from "./components/wave-applications-table" ;
63
- import { WaveStatusTable } from "./components/wave-status-table" ;
64
61
import { WaveForm } from "./components/migration-wave-form" ;
65
62
import { ManageApplicationsForm } from "./components/manage-applications-form" ;
66
63
import { deleteMigrationWave } from "@app/api/rest" ;
@@ -72,6 +69,9 @@ import { toRefs } from "@app/utils/model-utils";
72
69
import { useFetchTickets } from "@app/queries/tickets" ;
73
70
import { isInClosedRange } from "@app/components/FilterToolbar/dateUtils" ;
74
71
import { PencilAltIcon } from "@patternfly/react-icons" ;
72
+ import { WaveApplicationsTable } from "./components/wave-applications-table" ;
73
+ import { WaveStakeholdersTable } from "./components/stakeholders-table" ;
74
+ import { WaveStatusTable } from "./components/wave-status-table" ;
75
75
76
76
export const MigrationWaves : React . FC = ( ) => {
77
77
const { t } = useTranslation ( ) ;
@@ -86,9 +86,6 @@ export const MigrationWaves: React.FC = () => {
86
86
87
87
const [ isToolbarKebabOpen , setIsToolbarKebabOpen ] =
88
88
React . useState < boolean > ( false ) ;
89
- const [ isRowDropdownOpen , setIsRowDropdownOpen ] = React . useState <
90
- number | null
91
- > ( null ) ;
92
89
93
90
const [ migrationWaveModalState , setWaveModalState ] = React . useState <
94
91
"create" | MigrationWave | null
@@ -390,7 +387,7 @@ export const MigrationWaves: React.FC = () => {
390
387
}
391
388
numRenderedColumns = { numRenderedColumns }
392
389
>
393
- { currentPageItems ?. map ( ( migrationWave , rowIndex ) => {
390
+ { currentPageItems ?. map ( ( migrationWave , rowIndex ) => (
394
391
< Tbody
395
392
key = { migrationWave . id }
396
393
isExpanded = { isCellExpanded ( migrationWave ) }
@@ -468,7 +465,6 @@ export const MigrationWaves: React.FC = () => {
468
465
</ Td >
469
466
< Td isActionCell id = "row-actions" >
470
467
< ActionsColumn
471
- open = { isRowDropdownOpen === migrationWave . id }
472
468
items = { [
473
469
{
474
470
isAriaDisabled :
@@ -566,8 +562,8 @@ export const MigrationWaves: React.FC = () => {
566
562
</ Td >
567
563
</ Tr >
568
564
) : null }
569
- </ Tbody > ;
570
- } ) }
565
+ </ Tbody >
566
+ ) ) }
571
567
</ ConditionalTableBody >
572
568
</ Table >
573
569
< SimplePagination
0 commit comments