Skip to content

Commit

Permalink
CM-487: move files to components
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan committed Feb 7, 2024
1 parent 635caaf commit 72e219d
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import {
TextInput,
withModulesManager,
} from '@openimis/fe-core';
import AdvancedFiltersDialog from '../../components/payroll/AdvancedFiltersDialog';
import AdvancedFiltersDialog from './AdvancedFiltersDialog';
import { CLEARED_STATE_FILTER } from '../../constants';
import PayrollStatusPicker from '../../components/payroll/PayrollStatusPicker';
import PaymentMethodPicker from '../../components/payroll/PaymentMethodPicker';
import PayrollStatusPicker from './PayrollStatusPicker';
import PaymentMethodPicker from './PaymentMethodPicker';

const styles = (theme) => ({
tableTitle: theme.table.title,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
PayrollReconciliationTaskItemFormatters,
PayrollReconciliationTaskTableHeaders,
} from './components/tasks/PayrollReconciliationTasks';
import {BenefitConsumptionsTabLabel, BenefitConsumptionsTabPanel} from "./pages/payroll/BenefitConsumptionTabPanel";
import {BenefitConsumptionsTabLabel, BenefitConsumptionsTabPanel} from "./components/payroll/BenefitConsumptionTabPanel";

Check failure on line 25 in src/index.js

View workflow job for this annotation

GitHub Actions / lint

This line has a length of 121. Maximum allowed is 120

Check failure on line 25 in src/index.js

View workflow job for this annotation

GitHub Actions / lint

A space is required after '{'

Check failure on line 25 in src/index.js

View workflow job for this annotation

GitHub Actions / lint

A space is required before '}'

Check failure on line 25 in src/index.js

View workflow job for this annotation

GitHub Actions / lint

Strings must use singlequote

const ROUTE_PAYMENT_POINTS = 'paymentPoints';
const ROUTE_PAYMENT_POINT = 'paymentPoints/paymentPoint';
Expand Down
4 changes: 2 additions & 2 deletions src/pages/payroll/PayrollPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import {
} from '../../constants';
import { ACTION_TYPE } from '../../reducer';
import { mutationLabel, pageTitle } from '../../utils/string-utils';
import PayrollHeadPanel from './PayrollHeadPanel';
import PayrollTab from './PayrollTab';
import PayrollHeadPanel from '../../components/payroll/PayrollHeadPanel';
import PayrollTab from '../../components/payroll/PayrollTab';

const useStyles = makeStyles((theme) => ({
page: theme.page,
Expand Down

0 comments on commit 72e219d

Please sign in to comment.