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
2 changes: 1 addition & 1 deletion web/pgadmin/static/js/components/FormComponents.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ export function InputSelect({ref, cid, helpid, onChange, options, readonly = fal
const onChangeOption = useCallback((selectVal) => {
if (_.isArray(selectVal)) {
// Check if select all option is selected
if (!_.isUndefined(selectVal.find(x => x.label === '<Select All>'))) {
if (!_.isUndefined(selectVal.find(x => x.label === gettext('<Select All>')))) {
selectVal = filteredOptions;
}
/* If multi select options need to be in some format by UI, use formatter */
Expand Down
Loading