Skip to content

Commit

Permalink
import using complete path
Browse files Browse the repository at this point in the history
  • Loading branch information
barbalex committed May 15, 2024
1 parent b57c8ee commit 2bb6f91
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
36 changes: 18 additions & 18 deletions src/components/EkPlan/Table/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,26 @@ import Button from '@mui/material/Button'
import { useResizeDetector } from 'react-resize-detector'

import queryAll from './queryAll.js'
import CellForYearMenu from './CellForYearMenu'
import CellForYearMenu from './CellForYearMenu/index.jsx'
import storeContext from '../../../storeContext.js'
import yearsFromTpops from './yearsFromTpops'
import tpopRowFromTpop from './tpopRowFromTpop'
import yearRowFromTpop from './yearRowFromTpop'
import fields from './fields'
import yearColumnWidth from './yearColumnWidth'
import CellHeaderFixed from './CellHeaderFixed'
import CellHeaderFixedEkfrequenz from './CellHeaderFixedEkfrequenz'
import CellHeaderFixedEkfrequenzStartjahr from './CellHeaderFixedEkfrequenzStartjahr'
import CellHeaderYear from './CellHeaderYear'
import CellForYearTitle from './CellForYearTitle'
import CellForEkfrequenz from './CellForEkfrequenz'
import CellForEkfrequenzStartjahr from './CellForEkfrequenzStartjahr'
import CellForEkfrequenzAbweichend from './CellForEkfrequenzAbweichend'
import CellForTpopLink from './CellForTpopLink'
import CellForValue from './CellForValue'
import CellForYear from './CellForYear'
import yearsFromTpops from './yearsFromTpops.js'
import tpopRowFromTpop from './tpopRowFromTpop.js'
import yearRowFromTpop from './yearRowFromTpop.js'
import fields from './fields.js'
import yearColumnWidth from './yearColumnWidth.js'
import CellHeaderFixed from './CellHeaderFixed/index.jsx'
import CellHeaderFixedEkfrequenz from './CellHeaderFixedEkfrequenz.jsx'
import CellHeaderFixedEkfrequenzStartjahr from './CellHeaderFixedEkfrequenzStartjahr.jsx'
import CellHeaderYear from './CellHeaderYear.jsx'
import CellForYearTitle from './CellForYearTitle.jsx'
import CellForEkfrequenz from './CellForEkfrequenz.jsx'
import CellForEkfrequenzStartjahr from './CellForEkfrequenzStartjahr.jsx'
import CellForEkfrequenzAbweichend from './CellForEkfrequenzAbweichend.jsx'
import CellForTpopLink from './CellForTpopLink.jsx'
import CellForValue from './CellForValue.jsx'
import CellForYear from './CellForYear/index.jsx'
import Error from '../../shared/Error.jsx'
import exportRowFromTpop from './exportRowFromTpop'
import exportRowFromTpop from './exportRowFromTpop.js'
import exportModule from '../../../modules/export.js'
import ErrorBoundary from '../../shared/ErrorBoundary.jsx'
import Spinner from '../../shared/Spinner.jsx'
Expand Down
2 changes: 1 addition & 1 deletion src/components/EkPlan/Table/tpopRowFromTpop.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import fields from './fields'
import fields from './fields.js'
import appBaseUrl from '../../../modules/appBaseUrl.js'

const isOdd = (num) => num % 2 === 0
Expand Down
4 changes: 2 additions & 2 deletions src/components/EkPlan/Table/yearRowFromTpop.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import yearColumnWidth from './yearColumnWidth'
import fields from './fields'
import yearColumnWidth from './yearColumnWidth.js'
import fields from './fields.js'

const isOdd = (num) => num % 2 === 0

Expand Down

0 comments on commit 2bb6f91

Please sign in to comment.