Skip to content

Commit

Permalink
UIPQB-175: Displays the "Smth went wrong" page, when the user clicks …
Browse files Browse the repository at this point in the history
…on "Select operator" dropdown and selects any of them, if there are deleted custom fields.
  • Loading branch information
UladzislauKutarkin committed Dec 20, 2024
1 parent 80852c8 commit dfe4738
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* [UIPQB-168](https://folio-org.atlassian.net/browse/UIPQB-168) Allow editing queries containing no fields.
* [UIPQB-141](https://folio-org.atlassian.net/browse/UIPQB-141) Modal dialog focus inconsistencies across screenreaders.
* [UIPQB-175](https://folio-org.atlassian.net/browse/UIPQB-175) Displays the "Smth went wrong" page, when the user clicks on "Select operator" dropdown and selects any of them, if there are deleted custom fields.

## [1.2.6](https://github.com/folio-org/ui-plugin-query-builder/tree/v1.2.6) (2024-12-11)

Expand Down
10 changes: 2 additions & 8 deletions src/QueryBuilder/QueryBuilder/helpers/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,17 +191,11 @@ const getFormattedSourceField = async ({ item, intl, booleanOptions, fieldOption
if (!fieldItem) {
return {
boolean: { options: booleanOptions, current: boolean },
field: { options: fieldOptions, current: field, dataType: defaultItem?.dataType },
field: { options: fieldOptions, dataType: defaultItem?.dataType },
operator: {
dataType: defaultItem?.dataType,
options: getOperatorOptions({
dataType: defaultItem?.dataType,
hasSourceOrValues: defaultItem?.value || defaultItem?.source,
intl,
}),
current: '',
},
value: { current: '', source: defaultItem?.source, options: defaultItem?.values },
value: { current: '' },
};
}

Expand Down

0 comments on commit dfe4738

Please sign in to comment.