Rename InlineCell to RecordInlineCell (#2377)

rename inline cell
This commit is contained in:
bosiraphael
2023-11-06 17:18:25 +01:00
committed by GitHub
parent 3432615a17
commit 88ca846f83
12 changed files with 46 additions and 44 deletions

View File

@ -17,7 +17,7 @@ import { ShowPageSummaryCard } from '@/ui/layout/show-page/components/ShowPageSu
import { ShowPageRecoilScopeContext } from '@/ui/layout/states/ShowPageRecoilScopeContext';
import { FieldContext } from '@/ui/object/field/contexts/FieldContext';
import { entityFieldsFamilyState } from '@/ui/object/field/states/entityFieldsFamilyState';
import { InlineCell } from '@/ui/object/record-inline-cell/components/InlineCell';
import { RecordInlineCell } from '@/ui/object/record-inline-cell/components/RecordInlineCell';
import { PropertyBox } from '@/ui/object/record-inline-cell/property-box/components/PropertyBox';
import { InlineCellHotkeyScope } from '@/ui/object/record-inline-cell/types/InlineCellHotkeyScope';
import { PageTitle } from '@/ui/utilities/page-title/PageTitle';
@ -140,7 +140,7 @@ export const RecordShowPage = () => {
hotkeyScope: InlineCellHotkeyScope.InlineCell,
}}
>
<InlineCell />
<RecordInlineCell />
</FieldContext.Provider>
);
})}