Skip to content

Commit

Permalink
Merge pull request #923 from InseeFr/feat/rewrite-datasets-routes-folder
Browse files Browse the repository at this point in the history
feat: migrate datasets routes folder
  • Loading branch information
PierreVasseur authored Sep 3, 2024
2 parents cf1a02f + a626946 commit 0a6e604
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import DatasetsMenu from './menu';
const rootApp = document.getElementById('root-app');
const DatasetsComponent = () => {
if (rootApp) {
rootApp.classList = ['datasets'];
rootApp.className = 'datasets';
}
return (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ const DatasetsMenu = () => {
{
path: '/datasets/distributions',
pathKey: 'distributions',
className: null,
attrs: null,
className: {},
attrs: {},
label: D.distributionsTitle,
order: 2,
},
{
path: '/datasets',
pathKey: 'datasets',
className: null,
attrs: null,
className: {},
attrs: {},
label: D.datasetsTitle,
order: 1,
},
Expand Down

0 comments on commit 0a6e604

Please sign in to comment.