Skip to content
New issue

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

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

Already on GitHub? # to your account

[DQT|dataquery] Define Fields showing incorrect field description #7098

Merged
merged 1 commit into from
Dec 7, 2020
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules/dataquery/jsx/react.fieldselector.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ class FieldList extends Component {
// Display the fields using the FieldItem component
for (let i = start; i < filteredItems.length; i += 1) {
fieldName = filteredItems[i].key[1];
desc = filteredItems[i].value.Description;
type = filteredItems[i].value.Type || 'varchar(255)';

// Check if field is a file, if so set flag to true
Expand Down
1 change: 1 addition & 0 deletions modules/dqt/jsx/react.fieldselector.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ class FieldList extends Component {
// Display the fields using the FieldItem component
for (let i = start; i < filteredItems.length; i += 1) {
fieldName = filteredItems[i].key[1];
desc = filteredItems[i].value.Description;
type = filteredItems[i].value.Type || 'varchar(255)';

// Check if field is a file, if so set flag to true
Expand Down