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

Commit

Permalink
fix: DIA-699: [FE] We are still using 'Items' instead of 'Records' on…
Browse files Browse the repository at this point in the history
… some places (#273)
  • Loading branch information
yyassi-heartex authored Nov 23, 2023
1 parent 6c6a255 commit b27d1ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/MainView/DataView/DataView.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ export const DataView = injector(
} else if (store.SDK.type === 'DE' && (total === 0 || data.length === 0 || !hasData)) {
return (
<Block name="syncInProgress">
<Elem name='title' tag="h3">Hang tight! Items are syncing in the background</Elem>
<Elem name='text'>Press the button below to see any synced items</Elem>
<Elem name='title' tag="h3">Hang tight! Records are syncing in the background</Elem>
<Elem name='text'>Press the button below to see any synced records</Elem>
<Button onClick={async () => {
await store.fetchProject({ force: true, interaction: 'refresh' });
await store.currentView?.reload();
Expand Down
4 changes: 2 additions & 2 deletions src/components/MainView/DataViewOld/Table.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ export const DataView = injector(
} else if (store.SDK.type === 'DE' && (total === 0 || data.length === 0 || !hasData)) {
return (
<Block name="syncInProgress">
<Elem name='title' tag="h3">Hang tight! Items are syncing in the background</Elem>
<Elem name='text'>Press the button below to see any synced items</Elem>
<Elem name='title' tag="h3">Hang tight! Records are syncing in the background</Elem>
<Elem name='text'>Press the button below to see any synced records</Elem>
<Button onClick={async () => {
await store.fetchProject({ force: true, interaction: 'refresh' });
await store.currentView?.reload();
Expand Down

0 comments on commit b27d1ee

Please sign in to comment.