Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit b27d1ee

Browse files
fix: DIA-699: [FE] We are still using 'Items' instead of 'Records' on some places (#273)
1 parent 6c6a255 commit b27d1ee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/MainView/DataView/DataView.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ export const DataView = injector(
169169
} else if (store.SDK.type === 'DE' && (total === 0 || data.length === 0 || !hasData)) {
170170
return (
171171
<Block name="syncInProgress">
172-
<Elem name='title' tag="h3">Hang tight! Items are syncing in the background</Elem>
173-
<Elem name='text'>Press the button below to see any synced items</Elem>
172+
<Elem name='title' tag="h3">Hang tight! Records are syncing in the background</Elem>
173+
<Elem name='text'>Press the button below to see any synced records</Elem>
174174
<Button onClick={async () => {
175175
await store.fetchProject({ force: true, interaction: 'refresh' });
176176
await store.currentView?.reload();

src/components/MainView/DataViewOld/Table.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ export const DataView = injector(
166166
} else if (store.SDK.type === 'DE' && (total === 0 || data.length === 0 || !hasData)) {
167167
return (
168168
<Block name="syncInProgress">
169-
<Elem name='title' tag="h3">Hang tight! Items are syncing in the background</Elem>
170-
<Elem name='text'>Press the button below to see any synced items</Elem>
169+
<Elem name='title' tag="h3">Hang tight! Records are syncing in the background</Elem>
170+
<Elem name='text'>Press the button below to see any synced records</Elem>
171171
<Button onClick={async () => {
172172
await store.fetchProject({ force: true, interaction: 'refresh' });
173173
await store.currentView?.reload();

0 commit comments

Comments
 (0)