这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions src/components/Table/EmptyTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,23 @@ export default function EmptyTable() {
: false;
let contents = <></>;

if (tableSettings.isCollection !== false && hasData) {
if (hasData) {
contents = (
<>
<div>
<Typography variant="h6" component="h2" gutterBottom>
Get started
</Typography>
<Typography>
There is existing data in the Firestore collection:
{tableSettings.isCollection === false
? "There is existing data in the Array Sub Table:"
: "There is existing data in the Firestore collection:"}
<br />
<code>{tableSettings.collection}</code>
<code>
{tableSettings.collection}
{tableSettings.subTableKey?.length &&
`.${tableSettings.subTableKey}`}
</code>
</Typography>
</div>

Expand Down