mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed some UX issue with the Import/Export tool.
- Couldn't click on the filename control once gets an error. - Encoding is not in alphabetical order.
This commit is contained in:
committed by
Ashesh Vashi
parent
5141debae7
commit
c4ca781ce2
@@ -6,7 +6,7 @@ SELECT *
|
||||
FROM
|
||||
(SELECT pg_encoding_to_char(s.i) AS encoding
|
||||
FROM (SELECT generate_series(0, 100, 1) as i) s) a
|
||||
WHERE encoding != '';
|
||||
WHERE encoding != '' ORDER BY encoding;
|
||||
|
||||
{#
|
||||
-- For future use, Do not delete
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
SELECT * FROM
|
||||
(SELECT pg_encoding_to_char(s.i) AS encoding
|
||||
FROM (SELECT generate_series(0, 100, 1) as i) s) a
|
||||
WHERE encoding != '';
|
||||
WHERE encoding != '' ORDER BY encoding;
|
||||
|
||||
{#
|
||||
-- For future use, Do not delete
|
||||
|
||||
Reference in New Issue
Block a user