Skip to content

Commit 2c667bf

Browse files
committed
fix(web): improve field selector UX text
- Change 'default (0 fields)' to 'default (all fields)' which is more accurate since when no fields are selected, all fields are returned
1 parent f007984 commit 2c667bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/components/entity-detail/EntityDetailLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ export const EntityDetailLayout = ({
394394
<Text size="sm" c="dimmed" flex={1}>
395395
{selectParam && typeof selectParam === 'string'
396396
? selectParam
397-
: `default (${selectFields.length} fields)`}
397+
: `default (all fields)`}
398398
</Text>
399399
</Group>
400400
</Stack>

0 commit comments

Comments
 (0)