Skip to content

Commit

Permalink
chore: Code Optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
li-jia-nan committed Sep 29, 2024
1 parent 4beffa5 commit e7d1f36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Body/BodyRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import devRenderTimes from '../hooks/useRenderTimes';
import useRowInfo from '../hooks/useRowInfo';
import type { ColumnType, CustomizeComponent, GetRowKey } from '../interface';
import ExpandedRow from './ExpandedRow';
import { computedExpandedClassName } from '@/utils/expandUtil';
import { computedExpandedClassName } from '../utils/expandUtil';

export interface BodyRowProps<RecordType> {
record: RecordType;
Expand Down
2 changes: 1 addition & 1 deletion src/VirtualTable/BodyLine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { FlattenData } from '../hooks/useFlattenRecords';
import useRowInfo from '../hooks/useRowInfo';
import VirtualCell from './VirtualCell';
import { StaticContext } from './context';
import { computedExpandedClassName } from '@/utils/expandUtil';
import { computedExpandedClassName } from '../utils/expandUtil';

export interface BodyLineProps<RecordType = any> {
data: FlattenData<RecordType>;
Expand Down

0 comments on commit e7d1f36

Please sign in to comment.