-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stabilization is almost completed. Testing has been completed for all…
… supporting grids except for species, roles, and quadratpersonnel, none of which are immediately vital.
- Loading branch information
1 parent
07c4195
commit 98c25b9
Showing
30 changed files
with
2,764 additions
and
710 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import AllTaxonomiesViewDataGrid from '@/components/datagrids/applications/alltaxonomiesviewdatagrid'; | ||
import IsolatedAllTaxonomiesViewDataGrid from '@/components/datagrids/applications/isolated/isolatedalltaxonomiesdatagrid'; | ||
|
||
export default function AllTaxonomiesPage() { | ||
return <AllTaxonomiesViewDataGrid />; | ||
return <IsolatedAllTaxonomiesViewDataGrid />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import AttributesDataGrid from '@/components/datagrids/applications/attributesdatagrid'; | ||
import IsolatedAttributesDataGrid from '@/components/datagrids/applications/isolated/isolatedattributesdatagrid'; | ||
|
||
export default function AttributesPage() { | ||
return <AttributesDataGrid />; | ||
return <IsolatedAttributesDataGrid />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import PersonnelDataGrid from '@/components/datagrids/applications/personneldatagrid'; | ||
import IsolatedPersonnelDataGrid from '@/components/datagrids/applications/isolated/isolatedpersonneldatagrid'; | ||
|
||
export default function PersonnelPage() { | ||
return <PersonnelDataGrid />; | ||
return <IsolatedPersonnelDataGrid />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import QuadratPersonnelDataGrid from '@/components/datagrids/applications/quadratpersonneldatagrid'; | ||
import IsolatedQuadratPersonnelDataGrid from '@/components/datagrids/applications/isolated/isolatedquadratpersonneldatagrid'; | ||
|
||
export default function QuadratPersonnelPage() { | ||
return <QuadratPersonnelDataGrid />; | ||
return <IsolatedQuadratPersonnelDataGrid />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import QuadratsDataGrid from '@/components/datagrids/applications/quadratsdatagrid'; | ||
import IsolatedQuadratsDataGrid from '@/components/datagrids/applications/isolated/isolatedquadratsdatagrid'; | ||
|
||
export default function QuadratsPage() { | ||
return <QuadratsDataGrid />; | ||
return <IsolatedQuadratsDataGrid />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
'use client'; | ||
|
||
import StemTaxonomiesViewDataGrid from '@/components/datagrids/applications/stemtaxonomiesviewdatagrid'; | ||
import IsolatedStemTaxonomiesViewDataGrid from '@/components/datagrids/applications/isolated/isolatedstemtaxonomiesviewdatagrid'; | ||
|
||
export default function StemTaxonomiesPage() { | ||
return <StemTaxonomiesViewDataGrid />; | ||
return <IsolatedStemTaxonomiesViewDataGrid />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.