Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make max record setting user configurable #1679

Merged
merged 2 commits into from
Feb 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,9 @@ function OverviewPane({
<div style={{ paddingBottom: '10px' }}>
{hasTruncatedFields && (
<StyledTruncatedMessage>
<Icon name="warning sign" /> Record fields have been
truncated.&nbsp;
<Icon name="warning sign" />
Record fields have been truncated.&nbsp;
<br />
</StyledTruncatedMessage>
)}
{infoMessage && (
Expand Down
6 changes: 6 additions & 0 deletions src/browser/modules/Sidebar/UserSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,12 @@ const visualSettings = [
tooltip: "Max number of rows to render in 'Rows' result view"
}
},
{
maxFieldItems: {
displayName: 'Max record fields',
tooltip: 'Limits the number of fields per returned record'
}
},
{
autoComplete: {
displayName: 'Connect result nodes',
Expand Down