Skip to content

Commit 48b4a8d

Browse files
Fixed an issue where the Select All option on the columns tab of import/export data was not working in languages other than English. #9233
1 parent d9b3f95 commit 48b4a8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/pgadmin/static/js/components/FormComponents.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ export function InputSelect({ref, cid, helpid, onChange, options, readonly = fal
979979
const onChangeOption = useCallback((selectVal) => {
980980
if (_.isArray(selectVal)) {
981981
// Check if select all option is selected
982-
if (!_.isUndefined(selectVal.find(x => x.label === '<Select All>'))) {
982+
if (!_.isUndefined(selectVal.find(x => x.label === gettext('<Select All>')))) {
983983
selectVal = filteredOptions;
984984
}
985985
/* If multi select options need to be in some format by UI, use formatter */

0 commit comments

Comments
 (0)